Skip to content

Commit 5857e2d

Browse files
Move test to the end
1 parent b28c3f4 commit 5857e2d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/__tests__/nodeSuites/evaluations-fallback.spec.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,5 @@ export default async function (fetchMock, assert) {
251251
t.end();
252252
});
253253

254-
255254
assert.end();
256255
}

src/__tests__/online/node.spec.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ tape('## Node.js - E2E CI Tests ##', async function (assert) {
6060
/* Check client evaluations. */
6161
assert.test('E2E / In Memory', evaluationsSuite.bind(null, config, key));
6262
assert.test('E2E / In Memory - Semver', evaluationsSemverSuite.bind(null, fetchMock));
63-
assert.test('E2E / In Memory - Fallback treatment', evaluationsFallbackSuite.bind(null, fetchMock));
6463

6564
/* Check impressions */
6665
assert.test('E2E / Impressions', impressionsSuite.bind(null, key, fetchMock));
@@ -102,5 +101,8 @@ tape('## Node.js - E2E CI Tests ##', async function (assert) {
102101
// @TODO remove when dropping support for Split Proxy v5.10.0 or below
103102
assert.test('E2E / Proxy fallback', proxyFallbackSuite.bind(null, fetchMock));
104103

104+
/* Check evaluations fallback */
105+
assert.test('E2E / In Memory - Fallback treatment', evaluationsFallbackSuite.bind(null, fetchMock));
106+
105107
assert.end();
106108
});

0 commit comments

Comments
 (0)