diff options
Diffstat (limited to 'devtools/client/commandline/test/browser_cmd_folder.js')
-rw-r--r-- | devtools/client/commandline/test/browser_cmd_folder.js | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/devtools/client/commandline/test/browser_cmd_folder.js b/devtools/client/commandline/test/browser_cmd_folder.js new file mode 100644 index 000000000..8592d4a78 --- /dev/null +++ b/devtools/client/commandline/test/browser_cmd_folder.js @@ -0,0 +1,58 @@ +/* Any copyright is dedicated to the Public Domain. +* http://creativecommons.org/publicdomain/zero/1.0/ */ + +// Tests that the folder commands works as they should + +const TEST_URI = "data:text/html;charset=utf-8,cmd-folder"; + +function test() { + helpers.addTabWithToolbar(TEST_URI, function (options) { + return helpers.audit(options, [ + { + setup: "folder", + check: { + input: "folder", + hints: " open", + markup: "IIIIII", + status: "ERROR" + }, + }, + { + setup: "folder open", + check: { + input: "folder open", + hints: " [path]", + markup: "VVVVVVVVVVV", + status: "VALID" + } + }, + { + setup: "folder open ~", + check: { + input: "folder open ~", + hints: "", + markup: "VVVVVVVVVVVVV", + status: "VALID" + } + }, + { + setup: "folder openprofile", + check: { + input: "folder openprofile", + hints: "", + markup: "VVVVVVVVVVVVVVVVVV", + status: "VALID" + } + }, + { + setup: "folder openprofile WRONG", + check: { + input: "folder openprofile WRONG", + hints: "", + markup: "VVVVVVVVVVVVVVVVVVVEEEEE", + status: "ERROR" + } + } + ]); + }).then(finish, helpers.handleError); +} |