Skip to content

Commit eb511bc

Browse files
authored
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 b380535 commit eb511bc

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
@@ -145,7 +145,7 @@ describe('Custom Elements Typedef generation', () => {
145145
'',
146146
].join('\n');
147147

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

0 commit comments

Comments
 (0)