From be3a67ac9cfcbf4aedbc225a2b6fe53f349cd01b Mon Sep 17 00:00:00 2001 From: mshanemc Date: Tue, 4 Jun 2024 15:17:25 -0500 Subject: [PATCH] test: nut unique test names, do session cleanup --- test/nuts/local/localTrackingFileMoveThenEdit.nut.ts | 2 +- test/nuts/local/localTrackingFileMovesScale.nut.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/nuts/local/localTrackingFileMoveThenEdit.nut.ts b/test/nuts/local/localTrackingFileMoveThenEdit.nut.ts index db86f86a..04ad869c 100644 --- a/test/nuts/local/localTrackingFileMoveThenEdit.nut.ts +++ b/test/nuts/local/localTrackingFileMoveThenEdit.nut.ts @@ -44,7 +44,7 @@ describe('handles local files moves that also change the file', () => { }); after(async () => { - // await session?.clean(); + await session?.clean(); }); it('initialize the local tracking', async () => { diff --git a/test/nuts/local/localTrackingFileMovesScale.nut.ts b/test/nuts/local/localTrackingFileMovesScale.nut.ts index 5a5f1458..85b1ae8e 100644 --- a/test/nuts/local/localTrackingFileMovesScale.nut.ts +++ b/test/nuts/local/localTrackingFileMovesScale.nut.ts @@ -30,7 +30,7 @@ describe(`handles local files moves of ${classCount.toLocaleString()} classes ($ before(async () => { session = await TestSession.create({ project: { - name: 'large-repo', + name: 'large-repo-moves', }, devhubAuthStrategy: 'NONE', });