Skip to content

Commit c386d91

Browse files
committed
remove .only from tests
1 parent 6ac0882 commit c386d91

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/unit/entraGroupManagement.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ describe("Test Modify Group and List Group Routes", () => {
5353
vi.clearAllMocks();
5454
});
5555

56-
test.only("Modify group: Add and remove members", async () => {
56+
test("Modify group: Add and remove members", async () => {
5757
const queueId = randomUUID();
5858
sqsMock
5959
.on(SendMessageBatchCommand)

tests/unit/vitest.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ export default defineConfig({
1313
include: ["src/api/**/*.ts", "src/common/**/*.ts"],
1414
exclude: ["src/api/lambda.ts", "src/api/sqs/handlers/templates/*.ts"],
1515
thresholds: {
16-
statements: 54,
16+
statements: 55,
1717
functions: 66,
18-
lines: 54,
18+
lines: 55,
1919
},
2020
},
2121
},

0 commit comments

Comments
 (0)