Skip to content

Commit 5b7a806

Browse files
committed
test: fix test names
1 parent c41b42b commit 5b7a806

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

test/unit/cmap/auth/mongodb_oidc/azure_machine_workflow.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import { expect } from 'chai';
44
import { callback } from '../../../../../src/cmap/auth/mongodb_oidc/azure_machine_workflow';
55
import { OIDC_VERSION, type OIDCCallbackParams } from '../../../../mongodb';
66

7-
describe('AzureMachineFlow', function () {
8-
describe('#execute', function () {
7+
describe('Azure machine workflow', function () {
8+
describe('#callback', function () {
99
context('when TOKEN_RESOURCE is not set', function () {
1010
const controller = new AbortController();
1111
const params: OIDCCallbackParams = {

test/unit/cmap/auth/mongodb_oidc/gcp_machine_workflow.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { expect } from 'chai';
44
import { callback } from '../../../../../src/cmap/auth/mongodb_oidc/gcp_machine_workflow';
55
import { OIDC_VERSION, type OIDCCallbackParams } from '../../../../mongodb';
66

7-
describe('GCPMachineFlow', function () {
7+
describe('GCP machine workflow', function () {
88
describe('#callback', function () {
99
context('when TOKEN_RESOURCE is not set', function () {
1010
const controller = new AbortController();

test/unit/cmap/auth/mongodb_oidc/token_machine_workflow.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { expect } from 'chai';
33
// eslint-disable-next-line @typescript-eslint/no-restricted-imports
44
import { callback } from '../../../../../src/cmap/auth/mongodb_oidc/token_machine_workflow';
55

6-
describe('TokenMachineFlow', function () {
6+
describe('Token machine workflow', function () {
77
describe('#callback', function () {
88
context('when OIDC_TOKEN_FILE is not in the env', function () {
99
let file;

0 commit comments

Comments
 (0)