diff options
Diffstat (limited to 'toolkit/components/search/tests/xpcshell/test_async_migration.js')
-rw-r--r-- | toolkit/components/search/tests/xpcshell/test_async_migration.js | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/toolkit/components/search/tests/xpcshell/test_async_migration.js b/toolkit/components/search/tests/xpcshell/test_async_migration.js deleted file mode 100644 index 4d0335c45..000000000 --- a/toolkit/components/search/tests/xpcshell/test_async_migration.js +++ /dev/null @@ -1,27 +0,0 @@ -/* Any copyright is dedicated to the Public Domain. - http://creativecommons.org/publicdomain/zero/1.0/ */ - -/* Test that legacy metadata from search-metadata.json is correctly - * transferred to the new metadata storage. */ - -function run_test() { - updateAppInfo(); - installTestEngine(); - - do_get_file("data/metadata.json").copyTo(gProfD, "search-metadata.json"); - - run_next_test(); -} - -add_task(function* test_async_metadata_migration() { - yield asyncInit(); - yield promiseAfterCache(); - - // Check that the entries are placed as specified correctly - let metadata = yield promiseEngineMetadata(); - do_check_eq(metadata["engine"].order, 1); - do_check_eq(metadata["engine"].alias, "foo"); - - metadata = yield promiseGlobalMetadata(); - do_check_eq(metadata["searchDefaultExpir"], 1471013469846); -}); |