Skip to content

Commit d5d1a85

Browse files
committed
Added some code for debugging.
1 parent 2600394 commit d5d1a85

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

integration-tests/utils/helpers.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,8 @@ export function nativeLogoutFromCli() {
169169
const getNativeAuthAccessToken = async (): Promise<string> => {
170170
dotenv.config({path: '.env'});
171171
expect(process.env.ITP_NATIVE_TEST_CLIENT_ID, "ITP_NATIVE_TEST_CLIENT_ID").to.not.be.undefined;
172-
expect(process.env.ITP_NATIVE_TEST_CLIENT_ID, "ITP_NATIVE_TEST_CLIENT_ID not match").to.match(/native-/)
172+
expect(process.env.ITP_NATIVE_TEST_CLIENT_ID, "ITP_NATIVE_TEST_CLIENT_ID not match").to.match(/native-/);
173+
expect(process.env.ITP_SERVICE_CLIENT_ID, "ITP_SERVICE_CLIENT_ID not match").to.match(/service-/);
173174
expect(process.env.ITP_ISSUER_URL, "ITP_ISSUER_URL").to.not.be.undefined;
174175
const config: TestBrowserAuthorizationClientConfiguration = {
175176
authority: process.env.ITP_ISSUER_URL!,

0 commit comments

Comments
 (0)