Created
March 14, 2017 19:02
-
-
Save hbrysiewicz/db18c92a3dfbc8bee5025722cddb1566 to your computer and use it in GitHub Desktop.
Handy Ember Testing
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
// check what modules are loaded with regex | |
Object.keys(requirejs.entries).filter(x => /.+/.test(x)) | |
// ember-cli-mirage check that initializer is loaded | |
Object.keys(requirejs.entries).filter(x => /initializers\/ember-cli-mirage/.test(x)) | |
// run in debug from cli | |
node debug `which ember` test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment