blob: dae5154df43b41818751c71f97cc7fb8d3f3a8fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
// Tests that history initialization correctly handles a request to forcibly
// replace the current database.
add_task(async function () {
await test_database_replacement(
["migration", "places_v43.sqlite"],
"places.sqlite",
false,
PlacesUtils.history.DATABASE_STATUS_CORRUPT
);
});
|