diff --git a/monorepo/actionstep-sandbox/package.json b/monorepo/actionstep-sandbox/package.json index 8568a37..a5b5185 100644 --- a/monorepo/actionstep-sandbox/package.json +++ b/monorepo/actionstep-sandbox/package.json @@ -14,8 +14,7 @@ "scripts": { "start": "ts-node", "lint": "eslint . --fix", - "test": "jest", - "test:debug": "jest --runInBand --no-cache", + "test": "jest --passWithNoTests", "build": "rimraf ./dist && tsc --build tsconfig.build.json", "run:actions": "npm run start ./src/actions.ts", "run:got": "npm run start ./src/got.ts" diff --git a/monorepo/actionstep/src/action-step-auth.test.ts b/monorepo/actionstep/src/action-step-auth.test.ts index 66e6d18..f5f49be 100644 --- a/monorepo/actionstep/src/action-step-auth.test.ts +++ b/monorepo/actionstep/src/action-step-auth.test.ts @@ -1,7 +1,7 @@ import { ActionStepAuth } from './types/action-step-auth.type' import { actionStepAuth } from './action-step-auth' -describe('RexClient', () => { +describe('actionStepAuth', () => { let auth: ActionStepAuth beforeEach(() => { @@ -18,7 +18,7 @@ describe('RexClient', () => { }) describe('authorizeUrl', () => { - it('should return an array of RexAccountUser objects', async () => { + it('should return ActionStep authorize url', async () => { // Arrange const result = auth.authorizeUrl()