forked from geolba/tethys.backend
9 lines
167 B
TypeScript
9 lines
167 B
TypeScript
import { test } from '@japa/runner';
|
|
|
|
test.group('Home', () => {
|
|
test('make sure 2 + 2 is 4', async ({ assert }) => {
|
|
assert.equal(2 + 2, 4);
|
|
});
|
|
});
|
|
|