LibJS: Convert remaining top-level tests to new system

This commit is contained in:
Matthew Olsson
2020-07-05 10:47:40 -07:00
committed by Andreas Kling
parent 6d58c48c2f
commit 918f4affd5
19 changed files with 518 additions and 497 deletions

View File

@@ -1,5 +1,5 @@
test("basic update expression", () => {
var o = {};
const o = {};
o.f = 1;
expect(o.f++).toBe(1);