summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/Tests/function-missing-arg.js
diff options
context:
space:
mode:
authorBrian Gianforcaro <b.gianfo@gmail.com>2020-04-13 10:31:13 -0700
committerAndreas Kling <kling@serenityos.org>2020-04-14 12:55:31 +0200
commitd74ad81402c27113b2ed5586bc369703d6be61c4 (patch)
tree43aaf62b9467d55f7ad3002d049c7f050930475a /Libraries/LibJS/Tests/function-missing-arg.js
parent9477efe97032f15438b51bf01e2958cc76c554be (diff)
downloadserenity-d74ad81402c27113b2ed5586bc369703d6be61c4.zip
js/LibJS: Move test functions to pure javascript.
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.
Diffstat (limited to 'Libraries/LibJS/Tests/function-missing-arg.js')
-rw-r--r--Libraries/LibJS/Tests/function-missing-arg.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/Libraries/LibJS/Tests/function-missing-arg.js b/Libraries/LibJS/Tests/function-missing-arg.js
index 48810a38e7..39c10b6649 100644
--- a/Libraries/LibJS/Tests/function-missing-arg.js
+++ b/Libraries/LibJS/Tests/function-missing-arg.js
@@ -1,3 +1,5 @@
+load("test-common.js");
+
function foo(a, b) { return a + b; }
try {