Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim:set ts=2 sw=2 sts=2 et: */
add_task(async function test_execute() {
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));
});