From 9d1442b2ee36441930967f77009e765205226fcf Mon Sep 17 00:00:00 2001 From: Eli Bosley Date: Tue, 4 Feb 2025 11:30:06 -0500 Subject: [PATCH] fix: sequential test execution for generic-modification --- .../modifications/__test__/generic-modification.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/unraid-api/unraid-file-modifier/modifications/__test__/generic-modification.spec.ts b/api/src/unraid-api/unraid-file-modifier/modifications/__test__/generic-modification.spec.ts index dd9bbb99c..312b8ee3e 100644 --- a/api/src/unraid-api/unraid-file-modifier/modifications/__test__/generic-modification.spec.ts +++ b/api/src/unraid-api/unraid-file-modifier/modifications/__test__/generic-modification.spec.ts @@ -133,7 +133,7 @@ async function testInvalidModification(testCase: ModificationTestCase) { await patcher.rollback(); } -describe('File modifications', () => { +describe.sequential('File modifications', () => { test.each(testCases)(`$fileName modifier correctly applies to fresh install`, async (testCase) => { await testModification(testCase); });