@@ -57,8 +57,6 @@ fetchMock.post(url(settings, '/v1/metrics/config'), 200);
5757fetchMock . post ( url ( settings , '/v1/metrics/usage' ) , 200 ) ;
5858
5959tape ( '## Node.js - E2E CI Tests ##' , async function ( assert ) {
60- /* Check evaluations fallback */
61- assert . test ( 'E2E / In Memory - Fallback treatment' , evaluationsFallbackSuite . bind ( null , fetchMock ) ) ;
6260
6361 /* Check client evaluations. */
6462 assert . test ( 'E2E / In Memory' , evaluationsSuite . bind ( null , config , key ) ) ;
@@ -92,6 +90,9 @@ tape('## Node.js - E2E CI Tests ##', async function (assert) {
9290 /* Validate readiness with ready promises */
9391 assert . test ( 'E2E / Ready promise' , readyPromiseSuite . bind ( null , key , fetchMock ) ) ;
9492
93+ /* Check evaluations fallback */
94+ assert . test ( 'E2E / In Memory - Fallback treatment' , evaluationsFallbackSuite . bind ( null , fetchMock ) ) ;
95+
9596 /* Validate fetching specific splits */
9697 assert . test ( 'E2E / Fetch specific splits' , fetchSpecificSplits . bind ( null , fetchMock ) ) ;
9798 assert . test ( 'E2E / Fetch specific splits for flag sets' , fetchSpecificSplitsForFlagSets . bind ( null , fetchMock ) ) ;
0 commit comments