style: add missing semicolons

This commit is contained in:
Joao Dias
2016-10-23 22:52:57 +02:00
committed by vsavkin
parent 52bf188b8f
commit a382d6dd20
15 changed files with 29 additions and 32 deletions

View File

@ -49,9 +49,7 @@ describe('ng2 naive infinite scroll benchmark', function() {
firstTextOf(`${ stageButtons }:enabled`).then(function(text) {
expect(text).toEqual('Pitched');
clickFirstOf(`${ stageButtons }:enabled`).then(function() {
firstTextOf(`${ stageButtons }:enabled`).then(function(text) {
expect(text).toEqual('Won');
})
firstTextOf(`${ stageButtons }:enabled`).then((text) => expect(text).toEqual('Won'));
});
});