Skip to content
Merged
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
18 changes: 12 additions & 6 deletions src/plugin.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1090,11 +1090,14 @@ describe('OIDC plugin (local OIDC provider)', function () {
console.info('skipping Okta integration tests due to missing config');
return this.skip();
}
if (process.env.EVR_TASK_ID && process.platform === 'darwin') {
// TODO(MONGOSH-2335): Unskip Okta integration tests on macOS in Evergreen
if (
process.env.EVR_TASK_ID &&
['darwin', 'win32'].includes(process.platform)
) {
// TODO(MONGOSH-2335): Unskip Okta integration tests on macOS/Windows in Evergreen
// eslint-disable-next-line no-console
console.info(
'skipping Okta integration tests on macOS in Evergreen MONGOSH-2335'
'skipping Okta integration tests on macOS/Windows in Evergreen MONGOSH-2335'
);
return this.skip();
}
Expand Down Expand Up @@ -1173,11 +1176,14 @@ describe('OIDC plugin (local OIDC provider)', function () {
return this.skip();
}

if (process.env.EVR_TASK_ID && process.platform === 'darwin') {
// TODO(MONGOSH-2335): Unskip Azure integration tests on macOS in Evergreen
if (
process.env.EVR_TASK_ID &&
['darwin', 'win32'].includes(process.platform)
) {
// TODO(MONGOSH-2335): Unskip Azure integration tests on macOS/Windows in Evergreen
// eslint-disable-next-line no-console
console.info(
'skipping Azure integration tests on macOS in Evergreen MONGOSH-2335'
'skipping Azure integration tests on macOS/Windows in Evergreen MONGOSH-2335'
);
return this.skip();
}
Expand Down
Loading