Skip to content

Commit

Permalink
Repro of dexie#1039
Browse files Browse the repository at this point in the history
  • Loading branch information
dfahlander committed May 6, 2020
1 parent 5e16cc9 commit 890b879
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/tests-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ import {resetDatabase, supports, spawnedTest, promisedTest} from './dexie-unitte
var db = new Dexie("TestDBTable");
db.version(1).stores({
users: "++id,first,last,&username,*&email,*pets",
folks: "++,first,last"
folks: "++,first,last",
schema: "" // Test issue #1039
});

var User = db.users.defineClass({
Expand Down Expand Up @@ -886,4 +887,3 @@ promisedTest("bulkGet()", async () => {
ok(u3 && u3.first === 'Foo100', "Third should be Foo100");
ok(u4 === undefined, "Forth should be undefined");
});

0 comments on commit 890b879

Please sign in to comment.