mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
Everywhere: Hoist the Libraries folder to the top-level
This commit is contained in:
committed by
Andreas Kling
parent
950e819ee7
commit
93712b24bf
23
Libraries/LibJS/Tests/operators/bitwise-not.js
Normal file
23
Libraries/LibJS/Tests/operators/bitwise-not.js
Normal file
@@ -0,0 +1,23 @@
|
||||
test("basic functionality", () => {
|
||||
expect(~0).toBe(-1);
|
||||
expect(~1).toBe(-2);
|
||||
expect(~2).toBe(-3);
|
||||
expect(~3).toBe(-4);
|
||||
expect(~4).toBe(-5);
|
||||
expect(~5).toBe(-6);
|
||||
expect(~-1).toBe(0);
|
||||
expect(~42).toBe(-43);
|
||||
expect(~9999).toBe(-10000);
|
||||
});
|
||||
|
||||
test("non-numeric values", () => {
|
||||
expect(~"42").toBe(-43);
|
||||
expect(~"foo").toBe(-1);
|
||||
expect(~[]).toBe(-1);
|
||||
expect(~{}).toBe(-1);
|
||||
expect(~undefined).toBe(-1);
|
||||
expect(~null).toBe(-1);
|
||||
expect(~NaN).toBe(-1);
|
||||
expect(~Infinity).toBe(-1);
|
||||
expect(~-Infinity).toBe(-1);
|
||||
});
|
||||
Reference in New Issue
Block a user