blob: 476de87d2634a91fbbb9f408c8dd7d268ef305fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/**
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
/* import-globals-from databaseShadowing-shared.js */
loadSubscript("databaseShadowing-shared.js");
async function testSteps() {
// The shadow database was prepared in test_databaseShadowing1.js
disableNextGenLocalStorage();
if (!importShadowDatabase("shadowdb.sqlite")) {
return;
}
verifyData([]);
}
|