diff options
author | Omar Rizwan <omar@omar.website> | 2020-12-19 17:11:59 -0800 |
---|---|---|
committer | Omar Rizwan <omar@omar.website> | 2020-12-19 17:11:59 -0800 |
commit | 9e23fc59fc8fb3ee94aca07e2a2f7fa5d309df06 (patch) | |
tree | be57ba6edd01b18cc7ce8a2a4f6195ec06f5422d | |
parent | 375e91bdd75460340b5841d418ad6984ebaa7621 (diff) |
remove tab at end of test
-rw-r--r-- | extension/background.js | 3 | ||||
-rwxr-xr-x | test.c | 5 |
2 files changed, 5 insertions, 3 deletions
diff --git a/extension/background.js b/extension/background.js index da4e37b..10b99a0 100644 --- a/extension/background.js +++ b/extension/background.js @@ -275,7 +275,8 @@ router["/tabs/by-id/*/control"] = { // see https://developer.chrome.com/extensions/tabs await browser.tabs[command](tabId); return {size: stringToUtf8Array(buf).length}; - } + }, + async truncate({path, size}) { return {}; } }; router["/tabs/by-title"] = { @@ -15,10 +15,11 @@ int file_contents_equal(char* path, char* contents) { } // integration tests -int main() { +int main(int argc, char** argv) { assert(system("echo about:blank > fs/mnt/tabs/create") == 0); assert(file_contents_equal("fs/mnt/tabs/last-focused/url", "about:blank")); assert(system("file fs/mnt/tabs/last-focused/screenshot.png") == 0); - + assert(system("echo remove > fs/mnt/tabs/last-focused/control") == 0); + assert(1); printf("Done!\n"); } |