Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extract setupPauseTest() function #195

Merged
merged 1 commit into from
Feb 22, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 12 additions & 9 deletions addon-test-support/ember-mocha/setup-container-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,15 @@ function chainHooks(hooks, context) {
return hooks.reduce((promise, fn) => promise.then(fn.bind(context)), resolve());
}

function setupPauseTest(context) {
let originalPauseTest = context.pauseTest;
context.pauseTest = function Mocha_pauseTest() {
context.timeout(0); // prevent the test from timing out

return originalPauseTest.call(context);
};
}

export default function setupUnitTest(options) {
let originalContext;
let beforeEachHooks = [];
Expand All @@ -23,15 +32,9 @@ export default function setupUnitTest(options) {
beforeEach(function() {
originalContext = _assign({}, this);

return setupContext(this, options).then(() => {

let originalPauseTest = this.pauseTest;
this.pauseTest = function Mocha_pauseTest() {
this.timeout(0); // prevent the test from timing out

return originalPauseTest.call(this);
};
}).then(() => chainHooks(beforeEachHooks, this));
return setupContext(this, options)
.then(() => setupPauseTest(this))
.then(() => chainHooks(beforeEachHooks, this));
});

afterEach(function() {
Expand Down