Skip to content

Commit f6f8464

Browse files
cleanup console.log
1 parent f84c442 commit f6f8464

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

test-app/tests/unit/setup-context-test.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,12 @@ import config from '../../config/environment';
2929
import Ember from 'ember';
3030
import { deprecate, warn } from '@ember/debug';
3131

32-
console.log('1', Ember.testing);
3332
module('setupContext', function (hooks) {
3433
if (!hasEmberVersion(2, 4)) {
3534
return;
3635
}
3736

3837
hooks.beforeEach(function () {
39-
console.log('2', Ember.testing);
4038
setResolverRegistry({
4139
'service:foo': Service.extend({ isFoo: true }),
4240
});
@@ -64,7 +62,6 @@ module('setupContext', function (hooks) {
6462
function setupContextTests() {
6563
module('without options', function (hooks) {
6664
hooks.beforeEach(function () {
67-
console.log('3', Ember.testing);
6865
context = {};
6966
return setupContext(context);
7067
});
@@ -844,7 +841,6 @@ module('setupContext', function (hooks) {
844841

845842
module('with only application set', function (hooks) {
846843
hooks.beforeEach(function () {
847-
console.log('4', Ember.testing);
848844
setResolver(null);
849845
setApplication(application);
850846
});
@@ -854,7 +850,6 @@ module('setupContext', function (hooks) {
854850

855851
module('with application and resolver set', function (hooks) {
856852
hooks.beforeEach(function () {
857-
console.log('5', Ember.testing);
858853
setResolver(resolver);
859854
setApplication(application);
860855
});
@@ -864,7 +859,6 @@ module('setupContext', function (hooks) {
864859

865860
module('with only resolver set', function (hooks) {
866861
hooks.beforeEach(function () {
867-
console.log('6', Ember.testing);
868862
setResolver(resolver);
869863
setApplication(null);
870864
});

0 commit comments

Comments
 (0)