astro/examples/with-vitest/test/basic.test.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
476 B
TypeScript
Raw Normal View History

2022-08-05 19:42:58 +00:00
import { assert, expect, test } from 'vitest';
// Edit an assertion and save to see HMR in action
test('Math.sqrt()', () => {
2022-08-05 19:42:58 +00:00
expect(Math.sqrt(4)).toBe(2);
expect(Math.sqrt(144)).toBe(12);
expect(Math.sqrt(2)).toBe(Math.SQRT2);
});
test('JSON', () => {
2022-08-05 19:42:58 +00:00
const input = {
foo: 'hello',
bar: 'world',
};
2022-08-05 19:42:58 +00:00
const output = JSON.stringify(input);
2022-08-05 19:42:58 +00:00
expect(output).eq('{"foo":"hello","bar":"world"}');
assert.deepEqual(JSON.parse(output), input, 'matches original');
});