aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional/static-pages/home.spec.ts
diff options
context:
space:
mode:
authorLibravatar MCMXC <16797721+mcmxcdev@users.noreply.github.com>2024-02-10 18:19:14 -0700
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2024-02-13 06:59:44 +0530
commit7584d2d7a7110aef0331ebfa178b2295842c59fa (patch)
tree900cd71237e6231b57936fcce77ff229cd459041 /tests/functional/static-pages/home.spec.ts
parentupgrade recipes submodule (diff)
downloadferdium-server-7584d2d7a7110aef0331ebfa178b2295842c59fa.tar.gz
ferdium-server-7584d2d7a7110aef0331ebfa178b2295842c59fa.tar.zst
ferdium-server-7584d2d7a7110aef0331ebfa178b2295842c59fa.zip
refactor: project maintenance
- work in progress
Diffstat (limited to 'tests/functional/static-pages/home.spec.ts')
-rw-r--r--tests/functional/static-pages/home.spec.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/functional/static-pages/home.spec.ts b/tests/functional/static-pages/home.spec.ts
index 5054e05..20d02db 100644
--- a/tests/functional/static-pages/home.spec.ts
+++ b/tests/functional/static-pages/home.spec.ts
@@ -1,10 +1,10 @@
1import { test } from '@japa/runner'; 1import { test } from '@japa/runner'
2 2
3test.group('home page', () => { 3test.group('home page', () => {
4 test('returns a 200 response', async ({ client }) => { 4 test('returns a 200 response', async ({ client }) => {
5 const response = await client.get('/'); 5 const response = await client.get('/')
6 6
7 response.assertStatus(200); 7 response.assertStatus(200)
8 response.assertTextIncludes('Go to account dashboard'); 8 response.assertTextIncludes('Go to account dashboard')
9 }); 9 })
10}); 10})