Skip to content

Commit fc263a0

Browse files
committed
Removing reset
1 parent d84bd67 commit fc263a0

File tree

3 files changed

+13
-31
lines changed

3 files changed

+13
-31
lines changed

addon-test-support/ember-qunit/-internal/test-debug-info-summary.js

+10-14
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,16 @@ export function getSummary(testCounts, leakCounts, testNames) {
2424

2525
export default class TestDebugInfoSummary {
2626
constructor() {
27-
this.reset();
27+
this._testDebugInfos = [];
28+
this.fullTestNames = [];
29+
this.hasPendingRequests = false;
30+
this.hasPendingWaiters = false;
31+
this.hasRunLoop = false;
32+
this.hasPendingTimers = false;
33+
this.hasPendingScheduledQueueItems = false;
34+
this.totalPendingRequestCount = 0;
35+
this.totalPendingTimersCount = 0;
36+
this.totalPendingScheduledQueueItemCount = 0;
2837
}
2938

3039
add(testDebugInfo) {
@@ -58,19 +67,6 @@ export default class TestDebugInfoSummary {
5867
return this._testDebugInfos.length > 0;
5968
}
6069

61-
reset() {
62-
this._testDebugInfos = [];
63-
this.fullTestNames = [];
64-
this.hasPendingRequests = false;
65-
this.hasPendingWaiters = false;
66-
this.hasRunLoop = false;
67-
this.hasPendingTimers = false;
68-
this.hasPendingScheduledQueueItems = false;
69-
this.totalPendingRequestCount = 0;
70-
this.totalPendingTimersCount = 0;
71-
this.totalPendingScheduledQueueItemCount = 0;
72-
}
73-
7470
printToConsole(_console = console) {
7571
_console.group('Tests not isolated');
7672

addon-test-support/ember-qunit/test-isolation-validation.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import TestDebugInfo from './-internal/test-debug-info';
44
import TestDebugInfoSummary from './-internal/test-debug-info-summary';
55
import getDebugInfoAvailable from './-internal/get-debug-info-available';
66

7-
const nonIsolatedTests = new TestDebugInfoSummary();
87
const { backburner } = run;
8+
let nonIsolatedTests;
99

1010
/**
1111
* Detects if a specific test isn't isolated. A test is considered
@@ -22,6 +22,8 @@ const { backburner } = run;
2222
* @param {string} testInfo.name The test name
2323
*/
2424
export function detectIfTestNotIsolated({ module, name }) {
25+
nonIsolatedTests = new TestDebugInfoSummary();
26+
2527
if (!isSettled()) {
2628
let testDebugInfo;
2729
let backburnerDebugInfo;
@@ -47,7 +49,6 @@ export function detectIfTestNotIsolated({ module, name }) {
4749
export function reportIfTestNotIsolated() {
4850
if (nonIsolatedTests.hasDebugInfo) {
4951
nonIsolatedTests.printToConsole();
50-
nonIsolatedTests.reset();
5152

5253
throw new Error(nonIsolatedTests.formatForBrowser());
5354
}

tests/unit/test-debug-info-summary-test.js

-15
Original file line numberDiff line numberDiff line change
@@ -15,21 +15,6 @@ module('TestDebugInfoSummary', function() {
1515
assert.ok(testDebugInfoSummary.hasDebugInfo);
1616
});
1717

18-
test('reset correctly resets to default values', function(assert) {
19-
assert.expect(2);
20-
21-
let testDebugInfoSummary = new TestDebugInfoSummary();
22-
23-
testDebugInfoSummary.add(new TestDebugInfo('foo', 'bar', {}));
24-
testDebugInfoSummary.add(new TestDebugInfo('ding', 'bat', {}));
25-
26-
assert.ok(testDebugInfoSummary.hasDebugInfo);
27-
28-
testDebugInfoSummary.reset();
29-
30-
assert.notOk(testDebugInfoSummary.hasDebugInfo);
31-
});
32-
3318
test('printToConsole correctly prints minimal information', function(assert) {
3419
assert.expect(1);
3520

0 commit comments

Comments
 (0)