mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-30 03:27:15 +02:00
LibJS: Move tests to /Tests/LibJS
This commit is contained in:
committed by
Tim Flynn
parent
c059c6a2f5
commit
e3faa9b5ad
Notes:
github-actions[bot]
2026-02-06 11:17:48 +00:00
Author: https://github.com/gmta Commit: https://github.com/LadybirdBrowser/ladybird/commit/e3faa9b5add Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/7572 Reviewed-by: https://github.com/trflynn89 ✅
26
Tests/LibJS/Runtime/syntax/numeric-separator.js
Normal file
26
Tests/LibJS/Runtime/syntax/numeric-separator.js
Normal file
@@ -0,0 +1,26 @@
|
||||
describe("numeric separators", () => {
|
||||
test("numeric separator works for 'normal' number", () => {
|
||||
expect("1_2").toEvalTo(12);
|
||||
expect("4_2.4_2").toEvalTo(42.42);
|
||||
expect("1_2e0_2").toEvalTo(1200);
|
||||
|
||||
expect("1_2E+_1").not.toEval();
|
||||
expect("1_2E+0_1").toEvalTo(120);
|
||||
});
|
||||
|
||||
test("cannot use numeric separator after .", () => {
|
||||
expect("4._3").not.toEval();
|
||||
expect("0._3").not.toEval();
|
||||
expect("1_.3._3").not.toEval();
|
||||
|
||||
// Actually a valid attempt to get property '_3' on 1.3 which fails but does parse.
|
||||
expect("1.3._3").toEval();
|
||||
});
|
||||
|
||||
test("cannot use numeric separator in octal escaped number", () => {
|
||||
expect("00_1").not.toEval();
|
||||
expect("01_1").not.toEval();
|
||||
expect("07_3").not.toEval();
|
||||
expect("00_1").not.toEval();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user