mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
e74e2e039e
no issue - switch `jscs` and `jshint` inline config to `eslint` config - fix eslint errors, predominantly in tests where the config now the main app config more closely
23 lines
638 B
JavaScript
23 lines
638 B
JavaScript
import Ember from 'ember';
|
|
import Test from 'ember-test';
|
|
|
|
// This is needed for testing error responses in acceptance tests
|
|
// See http://williamsbdev.com/posts/testing-rsvp-errors-handled-globally/
|
|
|
|
// ember-cli-shims doesn't export Logger
|
|
const {Logger} = Ember;
|
|
|
|
let originalException, originalLoggerError;
|
|
|
|
export function errorOverride() {
|
|
originalException = Test.adapter.exception;
|
|
originalLoggerError = Logger.error;
|
|
Test.adapter.exception = function () {};
|
|
Logger.error = function () {};
|
|
}
|
|
|
|
export function errorReset() {
|
|
Test.adapter.exception = originalException;
|
|
Logger.error = originalLoggerError;
|
|
}
|