Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion e2e-tests/harness-custom-jwt.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ import { afterAll, beforeAll, describe, expect, it } from 'vitest';
const hasAws = hasAwsCredentials();
const canRun = prereqs.npm && prereqs.git && hasAws;
const region = process.env.AWS_REGION ?? 'us-east-1';
const customJWTRejectMsgRegex = /configured for CUSTOM_JWT|[Aa]uthoriz(ation|er).*mismatch|different.*authorization/i;
const customJWTRejectMsgRegex =
/configured for CUSTOM_JWT|[Aa]uthoriz(ation|er).*mismatch|different.*authorization|missing required audience claim/i;

describe.sequential('e2e: harness with CUSTOM_JWT auth', () => {
let testDir: string;
Expand Down
Loading