Skip to content

Commit

Permalink
style: address linter errors, move ts-expect-error desc
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Nov 7, 2022
1 parent a8e5bc6 commit 92c37dd
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions integration/injector/e2e/multiple-providers.spec.ts
Expand Up @@ -17,8 +17,7 @@ describe('Multiple providers under the same token ("each" feature)', () => {
},
);

// make sure "multiProviderInstances" is string[] not string
// @ts-expect-error
// @ts-expect-error: make sure "multiProviderInstances" is string[] not string
multiProviderInstances.charAt;

expect(multiProviderInstances).to.be.eql(['A', 'B', 'C']);
Expand All @@ -39,8 +38,7 @@ describe('Multiple providers under the same token ("each" feature)', () => {
},
);

// make sure "multiProviderInstances" is string[] not string
// @ts-expect-error
// @ts-expect-error: make sure "multiProviderInstances" is string[] not string
multiProviderInstances.charAt;

expect(multiProviderInstances).to.be.eql(['A', 'B', 'C']);
Expand Down

0 comments on commit 92c37dd

Please sign in to comment.