parent
e210715958
commit
991e665fba
|
@ -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}],
|
||||
|
|
|
@ -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'));
|
||||
|
|
Loading…
Reference in New Issue