blob: 35343be43778ebcf769bf5b0e435c74f8f8890af (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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']);
})
|