RSS Git Download  Clone
Raw View History
Blames found: 9 Mode: javascript Binary: false


Hang on, we reloading big blames...
//browser.ignoreSynchronization = true;
describe('CompileHtml', () => {
browser.get(`index.html`); const clicker = (button, counter) => { const total = 5;
for (let i = 0; i < total - 1; i++) {
button.click(); browser.waitForAngular(); } const count = counter.getText(); expect(count).toEqual(total.toString()); } it('Attribute', (done) => {
setTimeout(() => { const button = element(by.id('button-attribute')) const counter = element(by.id('counter-attribute')); clicker(button, counter); done(); }, 5000)
});
});