binding.js 256 B

12345678910
  1. describe('Double curly binding test', function() {
  2. beforeEach(function () {
  3. browser.get('/binding.html');
  4. });
  5. it('should compile binding', function() {
  6. expect(element(by.css('#loader1 .ladda-spinner div')).isPresent()).toBe(true);
  7. });
  8. });