From 1a669394f034dc2d86d2afdb1b948feab9929a71 Mon Sep 17 00:00:00 2001 From: Nick Date: Wed, 6 Dec 2023 22:34:34 +0900 Subject: [PATCH] test --- .github/workflows/cli.test.yaml | 2 +- cli/test/delegator.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cli.test.yaml b/.github/workflows/cli.test.yaml index f66e709a4..5511a75d5 100644 --- a/.github/workflows/cli.test.yaml +++ b/.github/workflows/cli.test.yaml @@ -58,7 +58,7 @@ jobs: APP_PORT: "3000" - name: Run tests - run: yarn cli build && yarn cli test ./cli/test/chain.test.ts + run: yarn cli build && yarn cli test ./cli/test/chain.test.ts ./cli/test/delegator.ts env: ORAKL_NETWORK_API_URL: "http://127.0.0.1:3000/api/v1" ORAKL_NETWORK_DELEGATOR_URL: "http://127.0.0.1:3002/api/v1" diff --git a/cli/test/delegator.ts b/cli/test/delegator.ts index 913793e70..98e9da836 100644 --- a/cli/test/delegator.ts +++ b/cli/test/delegator.ts @@ -31,8 +31,8 @@ const reporterAddress = '0x260836ac4f046b6887bbe16b322e7f1e5f9a0452' const contractAddress = '0x93120927379723583c7a0dd2236fcb255e96949f' const functionName = 'increment()' -describe('CLI Aggregator', function () { - test('Test Aggregator', async function () { +describe('CLI Delegator', function () { + test('Test Delegator', async function () { // Insert Organization const organization = await organizationInsertHandler()({ name: organizationName }) expect(organization.name).toBe(organizationName)