You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`module` allows you to scope your tests: Any test setup that is done inside of this scope will
26
26
apply to all test cases contained in this module.
27
-
Scoping your tests with `module` also allows you to execute your tests independently from other tests.
28
-
For example, to only run your tests from your `login` module, run `ember test --module='Acceptance | login'`.
27
+
28
+
Scoping your tests with `module` also allows you to execute your tests separately from other tests. The QUnit interface shows you a dropdown once you are running your tests that allows you to pick from available modules and filter tests down to the set that you have selected.
29
+
29
30
`setupApplicationTest` deals with application setup and teardown.
0 commit comments