mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-13 14:42:51 +00:00
LibJS: Run "prettier" on the tests :^)
This commit is contained in:
parent
72b1998f0d
commit
a103eae0d4
Notes:
sideshowbarker
2024-07-19 00:31:20 +09:00
Author: https://github.com/awesomekling
Commit: a103eae0d4
1 changed files with 5 additions and 5 deletions
|
@ -40,11 +40,11 @@ describe("correct behavior", () => {
|
|||
});
|
||||
|
||||
test("numeric keys", () => {
|
||||
const hex = {0x10: "16"};
|
||||
const oct = {0o10: "8"};
|
||||
const bin = {0b10: "2"};
|
||||
const float = {.5: "0.5"};
|
||||
|
||||
const hex = { 0x10: "16" };
|
||||
const oct = { 0o10: "8" };
|
||||
const bin = { 0b10: "2" };
|
||||
const float = { 0.5: "0.5" };
|
||||
|
||||
expect(hex["16"]).toBe("16");
|
||||
expect(oct["8"]).toBe("8");
|
||||
expect(bin["2"]).toBe("2");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue