Skip to content

Instantly share code, notes, and snippets.

@hbrysiewicz
Created March 14, 2017 19:02
Show Gist options
  • Save hbrysiewicz/db18c92a3dfbc8bee5025722cddb1566 to your computer and use it in GitHub Desktop.
Save hbrysiewicz/db18c92a3dfbc8bee5025722cddb1566 to your computer and use it in GitHub Desktop.
Handy Ember Testing
// 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