refactor: Rename test method description for tests

This commit is contained in:
Faruk AYDIN
2024-11-05 13:01:42 +01:00
parent 42c2131144
commit 122483de0c

View File

@@ -190,7 +190,7 @@ describe('Step model', () => {
});
});
it('test should test the step and mark it as completed', async () => {
it('test should execute the flow and mark the step as completed', async () => {
const step = await createStep({ status: 'incomplete' });
const testRunSpy = vi.spyOn(testRunModule, 'default').mockResolvedValue();