aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bootstrap.ts
diff options
context:
space:
mode:
authorLibravatar MCMXC <16797721+mcmxcdev@users.noreply.github.com>2024-02-18 20:22:20 -0700
committerLibravatar MCMXC <16797721+mcmxcdev@users.noreply.github.com>2024-02-18 20:22:20 -0700
commit3d0b58b28250b3b2e4ebe41ba48bed6774a01bfd (patch)
treeb96227379f4b73b90dbd5181b8d2390834acd4e9 /tests/bootstrap.ts
parentMerge branch 'refactor/project-maintenance' of github.com:ferdium/ferdium-ser... (diff)
downloadferdium-server-3d0b58b28250b3b2e4ebe41ba48bed6774a01bfd.tar.gz
ferdium-server-3d0b58b28250b3b2e4ebe41ba48bed6774a01bfd.tar.zst
ferdium-server-3d0b58b28250b3b2e4ebe41ba48bed6774a01bfd.zip
updates
Diffstat (limited to 'tests/bootstrap.ts')
-rw-r--r--tests/bootstrap.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/bootstrap.ts b/tests/bootstrap.ts
index d152db0..83f8ca5 100644
--- a/tests/bootstrap.ts
+++ b/tests/bootstrap.ts
@@ -12,6 +12,7 @@ import { apiClient } from '@japa/api-client';
12import app from '@adonisjs/core/services/app'; 12import app from '@adonisjs/core/services/app';
13import type { Config } from '@japa/runner/types'; 13import type { Config } from '@japa/runner/types';
14import testUtils from '@adonisjs/core/services/test_utils'; 14import testUtils from '@adonisjs/core/services/test_utils';
15import { authApiClient } from '@adonisjs/auth/plugins/api_client';
15 16
16import { fakeCsrfField } from './utils.js'; 17import { fakeCsrfField } from './utils.js';
17 18
@@ -31,6 +32,7 @@ export const plugins: Config['plugins'] = [
31 assert(), 32 assert(),
32 apiClient(), 33 apiClient(),
33 pluginAdonisJS(app), 34 pluginAdonisJS(app),
35 authApiClient(app),
34]; 36];
35 37
36/* 38/*