diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index bcf28ce62..1853a3dd9 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -95,7 +95,7 @@ jobs: - name: Start Streamr Docker Stack uses: streamr-dev/streamr-docker-dev-action@v1.0.0-alpha.3 with: - services-to-start: "mysql redis engine-and-editor cassandra parity-node0 parity-sidechain-node0 bridge broker-node-no-storage-1 broker-node-no-storage-2 broker-node-storage-1 nginx smtp" + services-to-start: "mysql redis core-api cassandra parity-node0 parity-sidechain-node0 bridge broker-node-no-storage-1 broker-node-no-storage-2 broker-node-storage-1 nginx smtp" - uses: nick-invision/retry@v2 name: Run Test @@ -125,7 +125,7 @@ jobs: - name: Start Streamr Docker Stack uses: streamr-dev/streamr-docker-dev-action@v1.0.0-alpha.3 with: - services-to-start: "mysql redis engine-and-editor cassandra parity-node0 parity-sidechain-node0 bridge broker-node-no-storage-1 broker-node-no-storage-2 broker-node-storage-1 nginx smtp" + services-to-start: "mysql redis core-api cassandra parity-node0 parity-sidechain-node0 bridge broker-node-no-storage-1 broker-node-no-storage-2 broker-node-storage-1 nginx smtp" - name: npm ci run: npm ci - name: benchmarks @@ -172,7 +172,7 @@ jobs: - name: Start Streamr Docker Stack uses: streamr-dev/streamr-docker-dev-action@v1.0.0-alpha.3 with: - services-to-start: "mysql redis engine-and-editor cassandra parity-node0 parity-sidechain-node0 bridge broker-node-no-storage-1 broker-node-no-storage-2 broker-node-storage-1 nginx smtp" + services-to-start: "mysql redis core-api cassandra parity-node0 parity-sidechain-node0 bridge broker-node-no-storage-1 broker-node-no-storage-2 broker-node-storage-1 nginx smtp" - name: npm ci run: npm ci - name: npm link diff --git a/test/integration/LoginEndpoints.test.ts b/test/integration/LoginEndpoints.test.ts index 25f5c0147..4efc216d2 100644 --- a/test/integration/LoginEndpoints.test.ts +++ b/test/integration/LoginEndpoints.test.ts @@ -101,7 +101,7 @@ describe('LoginEndpoints', () => { it('should not be able to use the same session token after logout', async () => { await client.getUserInfo() // first fetches the session token, then requests the endpoint const sessionToken1 = client.session.options.sessionToken - await client.logoutEndpoint() // invalidates the session token in engine-and-editor + await client.logoutEndpoint() // invalidates the session token in core-api await client.getUserInfo() // requests the endpoint with sessionToken1, receives 401, fetches a new session token const sessionToken2 = client.session.options.sessionToken assert.notDeepStrictEqual(sessionToken1, sessionToken2) diff --git a/test/integration/StreamrClient.test.ts b/test/integration/StreamrClient.test.ts index b9c14e631..1f19d4aca 100644 --- a/test/integration/StreamrClient.test.ts +++ b/test/integration/StreamrClient.test.ts @@ -84,7 +84,7 @@ describeRepeats('StreamrClient', () => { ]) } catch (e) { if (e.errno === 'ENOTFOUND' || e.errno === 'ECONNREFUSED') { - throw new Error('Integration testing requires that engine-and-editor ' + throw new Error('Integration testing requires that core-api ' + 'and data-api ("entire stack") are running in the background. ' + 'Instructions: https://github.com/streamr-dev/streamr-docker-dev#running') } else {