
The addition of assert functions to Userland/js was done before we had load(..) implemented. Now that it exists, it seems like the right move the test helper functions to pure javascript instead of poluting js with random global functions.
17 lines
349 B
JavaScript
17 lines
349 B
JavaScript
load("test-common.js");
|
|
|
|
try {
|
|
function foo() { }
|
|
assert(foo.length === 0);
|
|
assert((foo.length = 5) === 5);
|
|
assert(foo.length === 0);
|
|
|
|
function bar(a, b, c) {}
|
|
assert(bar.length === 3);
|
|
assert((bar.length = 5) === 5);
|
|
assert(bar.length === 3);
|
|
|
|
console.log("PASS");
|
|
} catch (e) {
|
|
console.log("FAIL: " + e);
|
|
}
|