Skip to content

Commit

Permalink
change back to function syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
bahmutov committed May 8, 2023
1 parent 95b5895 commit ffa5b5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cypress/e2e/title-position.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ describe('Positional title arguments', () => {

// https://github.com/bahmutov/cypress-each/issues/76
// @ts-ignore
it.each(list)('title is %1 and %0', (a, b) => {
it.each(list)('title is %1 and %0', function (a, b) {
expect(a, 'first').to.equal('foo')
expect(b, 'second').to.equal('main')
// @ts-ignore
Expand Down

0 comments on commit ffa5b5d

Please sign in to comment.