aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bootstrap.ts
diff options
context:
space:
mode:
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/*