diff options
author | Andreas Kling <kling@serenityos.org> | 2021-01-12 12:17:30 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-01-12 12:17:46 +0100 |
commit | 13d7c09125f8eec703d0a43a9a87fc8aa08f7319 (patch) | |
tree | 70fd643c429cea5c1f9362c2674511d17a53f3b5 /Userland/Libraries/LibJS/Tests/var-scoping.js | |
parent | dc28c07fa526841e05e16161c74a6c23984f1dd5 (diff) | |
download | serenity-13d7c09125f8eec703d0a43a9a87fc8aa08f7319.zip |
Libraries: Move to Userland/Libraries/
Diffstat (limited to 'Userland/Libraries/LibJS/Tests/var-scoping.js')
-rw-r--r-- | Userland/Libraries/LibJS/Tests/var-scoping.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/Tests/var-scoping.js b/Userland/Libraries/LibJS/Tests/var-scoping.js new file mode 100644 index 0000000000..86c5f1d5c7 --- /dev/null +++ b/Userland/Libraries/LibJS/Tests/var-scoping.js @@ -0,0 +1,17 @@ +test("basic functionality", () => { + function foo() { + i = 3; + expect(i).toBe(3); + var i; + } + + foo(); + + var caught_exception; + try { + j = i; + } catch (e) { + caught_exception = e; + } + expect(caught_exception).not.toBeUndefined(); +}); |