Skip to content

Commit

Permalink
fix(testing): Allow NestJs to rethrow errors on e2e tests (#2514)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexisvigoureux authored Nov 10, 2023
1 parent ea03d52 commit 1348ce0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/testing/src/test-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ export class TestServer {
const app = await NestFactory.create(appModule.AppModule, {
cors: config.apiOptions.cors,
logger: new Logger(),
abortOnError: false,
});
const { tokenMethod } = config.authOptions;
const usingCookie =
Expand Down

0 comments on commit 1348ce0

Please sign in to comment.