Toggle navigation
P3X GitList Snapshot
GitHub
Repo
Changelog
To do
Releases
Themes
Change log
Loading change log ...
To do ...
Loading todo ...
browsing:
c3f3cacc7577dbdc5ba16676808f714751d5478c
Branches
master
Tags
1.1.129-287
1.1.113-149
1.1.108-143
1.1.95-138
1.1.92-119
1.0.35-18
1.0.13-14
Files
Commits
Log
Graph
Stats
angular-compile.git
test
angular-protractor-disabled
test.js
RSS
Git
Fetch origin
Download
ZIP
TAR
Clone
Raw
View
History
Clone
SSH
HTTPS
Blames found: 9
Mode: javascript
Binary: false
Hang on, we reloading big blames...
83396ced
//browser.ignoreSynchronization = true;
f46e4d96
describe('CompileHtml', () => {
c605ea6f
f46e4d96
browser.get(`index.html`); const clicker = (button, counter) => { const total = 5;
63831028
for (let i = 0; i < total - 1; i++) {
f46e4d96
button.click(); browser.waitForAngular(); } const count = counter.getText(); expect(count).toEqual(total.toString()); } it('Attribute', (done) => {
83396ced
setTimeout(() => { const button = element(by.id('button-attribute')) const counter = element(by.id('counter-attribute')); clicker(button, counter); done(); }, 5000)
f46e4d96
});
63831028
});