mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-29 07:16:36 +01:00
3ba91df387
* Unifies the filename suffix to .test.js * Display @babel/no-invalid-this rule for tx-controller.test.js * Add test file extension to test:unit:global
67 lines
1.5 KiB
JavaScript
67 lines
1.5 KiB
JavaScript
import { strict as assert } from 'assert';
|
|
import migration38 from '../../../app/scripts/migrations/038';
|
|
|
|
describe('migration #38', function () {
|
|
it('should update the version metadata', function (done) {
|
|
const oldStorage = {
|
|
meta: {
|
|
version: 37,
|
|
},
|
|
data: {},
|
|
};
|
|
|
|
migration38
|
|
.migrate(oldStorage)
|
|
.then((newStorage) => {
|
|
assert.deepEqual(newStorage.meta, {
|
|
version: 38,
|
|
});
|
|
done();
|
|
})
|
|
.catch(done);
|
|
});
|
|
|
|
it('should add a fullScreenVsPopup property set to either "control" or "fullScreen"', function (done) {
|
|
const oldStorage = {
|
|
meta: {},
|
|
data: {},
|
|
};
|
|
|
|
migration38
|
|
.migrate(oldStorage)
|
|
.then((newStorage) => {
|
|
assert.equal(
|
|
newStorage.data.ABTestController.abTests.fullScreenVsPopup,
|
|
'control',
|
|
);
|
|
done();
|
|
})
|
|
.catch(done);
|
|
});
|
|
|
|
it('should leave the fullScreenVsPopup property unchanged if it exists', function (done) {
|
|
const oldStorage = {
|
|
meta: {},
|
|
data: {
|
|
ABTestController: {
|
|
abTests: {
|
|
fullScreenVsPopup: 'fullScreen',
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
migration38
|
|
.migrate(oldStorage)
|
|
.then((newStorage) => {
|
|
assert.deepEqual(newStorage.data.ABTestController, {
|
|
abTests: {
|
|
fullScreenVsPopup: 'fullScreen',
|
|
},
|
|
});
|
|
done();
|
|
})
|
|
.catch(done);
|
|
});
|
|
});
|