This repository has been archived by the owner on Sep 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test that demonstrates handing issue with broken imports on running t…
…ests 😭 When Webpack fails to resolve a dependency, Karma doesn’t get notified at all about the broken build, and the process just hangs. Transpilation errors behave as expected.
- Loading branch information
1 parent
a5fae77
commit 8b94f5a
Showing
2 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
spec/fixtures/project-content-with-invalid-import/src/index.spec.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import('name-that-is-invalid') | ||
|
||
describe('my project', function() { | ||
it('should work not work at all', function() {}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters