aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional/static-pages/terms.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-17 21:51:20 +0530
commita61e73c33b2e80d5af58e3dcfa2efe74245cd065 (patch)
treed5343ad245b4156662920896dedf14d9284051f8 /tests/functional/static-pages/terms.spec.ts
parentupgrade node to 20.11.1 and other minor versions for pkgs (#104) (diff)
downloadferdium-server-a61e73c33b2e80d5af58e3dcfa2efe74245cd065.tar.gz
ferdium-server-a61e73c33b2e80d5af58e3dcfa2efe74245cd065.tar.zst
ferdium-server-a61e73c33b2e80d5af58e3dcfa2efe74245cd065.zip
refactor: project maintenance
- work in progress
Diffstat (limited to 'tests/functional/static-pages/terms.spec.ts')
-rw-r--r--tests/functional/static-pages/terms.spec.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/functional/static-pages/terms.spec.ts b/tests/functional/static-pages/terms.spec.ts
index de990e4..9c22257 100644
--- a/tests/functional/static-pages/terms.spec.ts
+++ b/tests/functional/static-pages/terms.spec.ts
@@ -1,10 +1,10 @@
1import { test } from '@japa/runner'; 1import { test } from '@japa/runner'
2 2
3test.group('terms page', () => { 3test.group('terms page', () => {
4 test('returns a 200 response', async ({ client }) => { 4 test('returns a 200 response', async ({ client }) => {
5 const response = await client.get('/terms'); 5 const response = await client.get('/terms')
6 6
7 response.assertStatus(200); 7 response.assertStatus(200)
8 response.assertTextIncludes('Terms of Service'); 8 response.assertTextIncludes('Terms of Service')
9 }); 9 })
10}); 10})