Skip to content

Commit ea6bff7

Browse files
Move tests to the top
1 parent 5857e2d commit ea6bff7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/__tests__/online/node.spec.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,9 @@ fetchMock.post(url(settings, '/v1/metrics/config'), 200);
5757
fetchMock.post(url(settings, '/v1/metrics/usage'), 200);
5858

5959
tape('## Node.js - E2E CI Tests ##', async function (assert) {
60+
/* Check evaluations fallback */
61+
assert.test('E2E / In Memory - Fallback treatment', evaluationsFallbackSuite.bind(null, fetchMock));
62+
6063
/* Check client evaluations. */
6164
assert.test('E2E / In Memory', evaluationsSuite.bind(null, config, key));
6265
assert.test('E2E / In Memory - Semver', evaluationsSemverSuite.bind(null, fetchMock));
@@ -101,8 +104,5 @@ tape('## Node.js - E2E CI Tests ##', async function (assert) {
101104
// @TODO remove when dropping support for Split Proxy v5.10.0 or below
102105
assert.test('E2E / Proxy fallback', proxyFallbackSuite.bind(null, fetchMock));
103106

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

0 commit comments

Comments
 (0)