Sha256: 7a2b5a229d02d1dea7dcd0d1ef6792e28b21c00d64e2c61187d1dcb9f60ec9c1
Contents?: true
Size: 1.17 KB
Versions: 1
Compression:
Stored size: 1.17 KB
Contents
/** @module ember */ import { RSVP } from '@ember/-internals/runtime'; import { assert, info } from '@ember/debug'; let resume; /** Resumes a test paused by `pauseTest`. @method resumeTest @return {void} @public */ export function resumeTest() { assert('Testing has not been paused. There is nothing to resume.', resume); resume(); resume = undefined; } /** Pauses the current test - this is useful for debugging while testing or for test-driving. It allows you to inspect the state of your application at any point. Example (The test will pause before clicking the button): ```javascript visit('/') return pauseTest(); click('.btn'); ``` You may want to turn off the timeout before pausing. qunit (as of 2.4.0): ``` visit('/'); assert.timeout(0); return pauseTest(); click('.btn'); ``` mocha: ``` visit('/'); this.timeout(0); return pauseTest(); click('.btn'); ``` @since 1.9.0 @method pauseTest @return {Object} A promise that will never resolve @public */ export function pauseTest() { info('Testing paused. Use `resumeTest()` to continue.'); return new RSVP.Promise(resolve => { resume = resolve; }, 'TestAdapter paused promise'); }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
discourse-ember-source-3.6.0.0 | dist/es/ember-testing/lib/helpers/pause_test.js |