Arno Kaimbacher
f403c3109f
All checks were successful
CI Pipeline / japa-tests (push) Successful in 54s
- npm updates - side menu with child items - flash messages via HttpContext response (extended via macro)
8 lines
166 B
TypeScript
8 lines
166 B
TypeScript
import { test } from '@japa/runner';
|
|
|
|
test.group('Home', () => {
|
|
test('make sure 2 + 2 is 4', async ({ assert }) => {
|
|
assert.equal(2 + 2, 4);
|
|
});
|
|
});
|