Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test runs only with pattern: os != 'android'
- Manifest: toolkit/components/places/tests/unit/xpcshell.toml
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim:set ts=2 sw=2 sts=2 et: */
add_task(async function test_execute() {
const TEST_URI = uri("http://mozilla.com");
Assert.equal(0, await PlacesTestUtils.visitsInDB(TEST_URI));
await PlacesTestUtils.addVisits({ uri: TEST_URI });
Assert.equal(1, await PlacesTestUtils.visitsInDB(TEST_URI));
await PlacesTestUtils.addVisits({ uri: TEST_URI });
Assert.equal(2, await PlacesTestUtils.visitsInDB(TEST_URI));
});