cordova-android/node_modules/cordova-registry-mapper/tests/test.js

12 lines
337 B
JavaScript
Raw Normal View History

2016-01-21 09:07:33 +08:00
var test = require('tape');
var oldToNew = require('../index').oldToNew;
var newToOld = require('../index').newToOld;
test('plugin mappings exist', function(t) {
t.plan(2);
t.equal('cordova-plugin-device', oldToNew['org.apache.cordova.device']);
t.equal('org.apache.cordova.device', newToOld['cordova-plugin-device']);
})