tethys.backend/tests/functional/home.spec.ts

8 lines
166 B
TypeScript
Raw Normal View History

2023-05-09 12:43:16 +00:00
import { test } from '@japa/runner';
test.group('Home', () => {
test('make sure 2 + 2 is 4', async ({ assert }) => {
assert.equal(2 + 2, 4);
});
});