We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15cd6a0 commit b0879cbCopy full SHA for b0879cb
tests/integration/browser.migration.js
@@ -80,6 +80,12 @@ describe('migration', function () {
80
81
var dbs = {};
82
83
+ before(function () {
84
+ if (usingIndexeddb() && !versionGte(scenario, '7.2.1')) {
85
+ return this.skip();
86
+ }
87
+ });
88
+
89
beforeEach(function (done) {
90
if (skip) {
91
return this.skip();
@@ -122,12 +128,6 @@ describe('migration', function () {
122
128
testUtils.cleanup([dbs.first.local, dbs.second.local], done);
123
129
});
124
130
125
- before(function () {
126
- if (usingIndexeddb() && !versionGte(scenario, '7.2.1')) {
127
- return this.skip();
- }
- });
-
131
var origDocs = [
132
{_id: '0', a: 1, b: 1},
133
{_id: '3', a: 4, b: 16},
0 commit comments