form.js 247 B

12345678910
  1. describe('duplicate compile test', function() {
  2. beforeEach(function () {
  3. browser.get('/form.html');
  4. });
  5. it('should msg element is only one', function() {
  6. expect(element.all(by.className('help-block')).count()).toEqual(1);
  7. });
  8. });