mirror of
https://github.com/roytam1/basilisk55.git
synced 2026-05-26 15:02:46 +00:00
59 lines
1.4 KiB
JavaScript
59 lines
1.4 KiB
JavaScript
/* 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);
|
|
}
|