ref/ set default angular eslint rules
This commit is contained in:
@@ -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 !');
|
||||
|
||||
Reference in New Issue
Block a user