angular/angular-hint

View on GitHub
e2e/include-wrong-module-name/include-wrong-module-name.spec.js

Summary

Maintainability
A
1 hr
Test Coverage
'use strict';

var consoleText = require('../util.protractor');

describe('angularHint', function() {
  it('should warn if ng-hint is called with unknown options', function() {
    browser.get('include-wrong-module-name/');
    expect(consoleText())
        .toBe('Angular Hint: General; Warning; Module ngHintWrongModuleName could not be found;');
  });
});