Skip to content

Commit ec109d1

Browse files
committed
chore(lint): fix lint in v3 after v2.18.1 merge (#3667)
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
1 parent 7aa70e8 commit ec109d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/output-targets/test/custom-elements-types.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ describe('Custom Elements Typedef generation', () => {
154154
'',
155155
].join('\n');
156156

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

0 commit comments

Comments
 (0)