Skip to content

Commit

Permalink
chore(lint): fix lint in v3 after v2.18.1 merge (#3667)
Browse files Browse the repository at this point in the history
this commit fixes a lint error that is the result of the following
course of actions:
- https://github.com/ionic-team/stencil/pull/3621/files updated
  eslint-plugin-jest, which now errors on aliased mathers
- the changes in the aforementioned PR were pulled into the v3.0.0-dev
  branch
- the new lint rules didn't run on that branch until the merge, catching
  one violation in the v3 branch that wasn't in the v2 branch
  • Loading branch information
rwaskiewicz committed Jan 24, 2023
1 parent 7aa70e8 commit ec109d1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ describe('Custom Elements Typedef generation', () => {
'',
].join('\n');

expect(compilerCtx.fs.writeFile).toBeCalledWith(join('my-best-dir', 'index.d.ts'), expectedTypedefOutput, {
expect(compilerCtx.fs.writeFile).toHaveBeenCalledWith(join('my-best-dir', 'index.d.ts'), expectedTypedefOutput, {
outputTargetType: DIST_CUSTOM_ELEMENTS,
});

Expand Down

0 comments on commit ec109d1

Please sign in to comment.