Skip to content

Commit

Permalink
Fix arrow function
Browse files Browse the repository at this point in the history
  • Loading branch information
KillianG committed Jul 22, 2024
1 parent 4da817b commit 7799c8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ctst/steps/pra.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Given } from '@cucumber/cucumber';
import Zenko from 'world/Zenko';

Given('a PRA installed', (this: Zenko) => {
Given('a PRA installed', async function (this: Zenko) {

Check warning on line 4 in tests/ctst/steps/pra.ts

View workflow job for this annotation

GitHub Actions / lint-and-build-ctst

Unexpected function expression

Check failure on line 4 in tests/ctst/steps/pra.ts

View workflow job for this annotation

GitHub Actions / lint-and-build-ctst

Async function has no 'await' expression
return;
});

0 comments on commit 7799c8a

Please sign in to comment.