Created
April 12, 2016 13:39
-
-
Save zeitiger/1f5bd146a73fd5d76d24205b7fee6099 to your computer and use it in GitHub Desktop.
In test scenario it could be helpful to simple disable css-plugin of SystemJS
This file contains hidden or 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
System.set(System.normalizeSync('css'), System.newModule({ | |
fetch() { | |
console.info('disable css loading in test suite'); | |
return Promise.resolve(''); | |
} | |
})); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment