permissive eslint rules to remove linter warnings

This commit is contained in:
Maxime GRIS
2019-11-19 15:47:26 +01:00
parent db6c0e4d8b
commit 964b57f245
9 changed files with 14 additions and 20 deletions

View File

@@ -6,13 +6,11 @@ import commonSetup from './common-setup';
describe('angular-electron App', function () {
commonSetup.apply(this);
/* eslint "@typescript-eslint/no-explicit-any": 0 */
let browser: any;
let client: SpectronClient;
beforeEach(function () {
client = this.app.client;
/* eslint "@typescript-eslint/no-explicit-any": 0 */
browser = client as any;
});
@@ -21,7 +19,6 @@ describe('angular-electron App', function () {
expect(text).to.equal('App works !');
});
it('creates initial windows', async function () {
const count = await client.getWindowCount();
expect(count).to.equal(1);