You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
457 B
19 lines
457 B
2 years ago
|
import add from '../src/utils.imba'
|
||
|
|
||
|
test "add()", do
|
||
|
it "adds from test folder", do
|
||
|
expect(add(40, 2)).toBe(42)
|
||
|
|
||
|
test "Math.sqrt()", do
|
||
|
expect(Math.sqrt(4)).toBe 2
|
||
|
expect(Math.sqrt(144)).toBe 12
|
||
|
expect(Math.sqrt(2)).toBe Math.SQRT2
|
||
|
|
||
|
test "JSON", do
|
||
|
const input =
|
||
|
foo: "hello"
|
||
|
bar: "world"
|
||
|
const output = JSON.stringify(input)
|
||
|
expect(output).toBe '{"foo":"hello","bar":"world"}'
|
||
|
assert.deepEqual JSON.parse(output), input, "matches original"
|