mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
9 lines
220 B
JavaScript
9 lines
220 B
JavaScript
describe("minus behavior", () => {
|
|
test("the basics", () => {
|
|
expect(3n - 4n).toBe(-1n);
|
|
expect(3n - -4n).toBe(7n);
|
|
expect(-3n - -4n).toBe(1n);
|
|
expect(-3n - 4n).toBe(-7n);
|
|
});
|
|
});
|