fix(benchpress): formatted spec files (#35127)

PR Close #35127
This commit is contained in:
Wagner Maciel 2020-02-03 11:17:26 -08:00 committed by Miško Hevery
parent e210715958
commit 991e665fba
2 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ describe('largeform benchmark', () => {
afterEach(verifyNoBrowserErrors);
it('should work for ng2', async () => {
it('should work for ng2', async() => {
openBrowser({
url: '/',
params: [{name: 'copies', value: 1}],

View File

@ -28,7 +28,7 @@ const SCENARIOS = [
describe('styling benchmark spec', () => {
afterEach(verifyNoBrowserErrors);
it('should render and interact to update and detect changes', async () => {
it('should render and interact to update and detect changes', async() => {
openBrowser({url: '/', ignoreBrowserSynchronization: true});
create();
const items = element.all(by.css('styling-bindings button'));
@ -38,7 +38,7 @@ describe('styling benchmark spec', () => {
expect(await items.first().getAttribute('title')).toBe('baz');
});
it('should render and run noop change detection', async () => {
it('should render and run noop change detection', async() => {
openBrowser({url: '/', ignoreBrowserSynchronization: true});
create();
const items = element.all(by.css('styling-bindings button'));