10 lines
237 B
JavaScript
Executable File
10 lines
237 B
JavaScript
Executable File
describe('data-ladda case test', function() {
|
|
beforeEach(function () {
|
|
browser.get('/data.html');
|
|
});
|
|
|
|
it('should compile inner text', function() {
|
|
expect(element(by.id('btn')).getText()).toEqual('ladda button');
|
|
});
|
|
});
|