ref/ set default angular eslint rules

This commit is contained in:
Maxime GRIS
2021-06-20 19:12:22 +02:00
parent 2b819d7eaf
commit 7d531d1775
15 changed files with 34 additions and 36 deletions

View File

@@ -3,7 +3,7 @@ import { SpectronClient } from 'spectron';
import commonSetup from './common-setup';
describe('angular-electron App', function () {
describe('angular-electron App', () => {
commonSetup.apply(this);
@@ -13,12 +13,12 @@ describe('angular-electron App', function () {
client = this.app.client;
});
it('creates initial windows', async function () {
it('creates initial windows', async () => {
const count = await client.getWindowCount();
expect(count).to.equal(1);
});
it('should display message saying App works !', async function () {
it('should display message saying App works !', async () => {
const elem = await client.$('app-home h1');
const text = await elem.getText();
expect(text).to.equal('App works !');