Skip to content

Commit

Permalink
fix(test-execution-service): canStartKarma condition
Browse files Browse the repository at this point in the history
  • Loading branch information
rigor789 committed Sep 30, 2021
1 parent ab9fc0f commit c68d58e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/services/test-execution-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export class TestExecutionService implements ITestExecutionService {
paths: [projectData.projectDir],
});

canStartKarmaServer = !!pathToKarma;
canStartKarmaServer = canStartKarmaServer && !!pathToKarma;

return canStartKarmaServer;
}
Expand Down

0 comments on commit c68d58e

Please sign in to comment.