mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 19:04:58 +00:00
test-js: Use prettier and format all files
This commit is contained in:
committed by
Andreas Kling
parent
e532888242
commit
6d58c48c2f
@@ -1,15 +1,15 @@
|
||||
test("string literal indexing", () => {
|
||||
var s = "foo";
|
||||
expect(s[0]).toBe("f");
|
||||
expect(s[1]).toBe("o");
|
||||
expect(s[2]).toBe("o");
|
||||
expect(s[3]).toBeUndefined();
|
||||
var s = "foo";
|
||||
expect(s[0]).toBe("f");
|
||||
expect(s[1]).toBe("o");
|
||||
expect(s[2]).toBe("o");
|
||||
expect(s[3]).toBeUndefined();
|
||||
});
|
||||
|
||||
test("string object indexing", () => {
|
||||
var s = new String("bar");
|
||||
expect(s[0]).toBe("b");
|
||||
expect(s[1]).toBe("a");
|
||||
expect(s[2]).toBe("r");
|
||||
expect(s[3]).toBeUndefined();
|
||||
var s = new String("bar");
|
||||
expect(s[0]).toBe("b");
|
||||
expect(s[1]).toBe("a");
|
||||
expect(s[2]).toBe("r");
|
||||
expect(s[3]).toBeUndefined();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user