mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 14:35:07 +00:00
test-js: Use prettier and format all files
This commit is contained in:
parent
e532888242
commit
6d58c48c2f
248 changed files with 8291 additions and 7725 deletions
|
@ -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();
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue