angular-test-runner icon indicating copy to clipboard operation
angular-test-runner copied to clipboard

Test Angular stuff without ngMock.

Results 5 angular-test-runner issues
Sort by recently updated
recently updated
newest added

When expectElement finds multiple elements he does not throw any error connected with that problem and test fails. When first found element has correct value (for example text) error message...

bug

This option will fail a test if any uncaught error is thrown asynchronously. It won't fail always (that's why there is no test for it), because some simple tests will...

When using: `type('first').in('.filter-values__search')` I'm getting: ``` Chrome 58.0.3029 (Linux 0.0.0) test FAILED TypeError: $el.size is not a function at eval (webpack:///../~/angular-test-runner/angular-test-runner.js?:34195:21) at eval (webpack:///../~/angular-test-runner/angular-test-runner.js?:34276:7) at execute (webpack:///../~/angular-test-runner/angular-test-runner.js?:34421:20) at Object.perform (webpack:///../~/angular-test-runner/angular-test-runner.js?:34446:9)...

Breaking change: renaming publishEvent to broadcastEvent to comply with angular naming

When I have some not idempotent operations in module config I don't want to run it every time I run test: `angular.module('numerals', []) .config(() => { numeral.register('locale', 'pl',{...} // cannot...

enhancement