diff --git a/__tests__/index.test.js b/__tests__/index.test.js index dabd95c..0b20ef9 100644 --- a/__tests__/index.test.js +++ b/__tests__/index.test.js @@ -1,5 +1,5 @@ /** - * Unit tests for the action's entrypoint, src/index.ts + * Unit tests for the action's entrypoint, src/index.js */ const { run } = require('../src/main') diff --git a/__tests__/main.test.js b/__tests__/main.test.js index 3c6ffe9..021a7d1 100644 --- a/__tests__/main.test.js +++ b/__tests__/main.test.js @@ -1,9 +1,5 @@ /** - * Unit tests for the action's main functionality, src/main.ts - * - * These should be run as if the action was called from a workflow. - * Specifically, the inputs listed in `action.yml` should be set as environment - * variables following the pattern `INPUT_`. + * Unit tests for the action's main functionality, src/main.js */ const core = require('@actions/core') const main = require('../src/main') diff --git a/__tests__/wait.test.js b/__tests__/wait.test.js index 03710c8..27d0ac9 100644 --- a/__tests__/wait.test.js +++ b/__tests__/wait.test.js @@ -1,5 +1,5 @@ /** - * Unit tests for src/wait.ts + * Unit tests for src/wait.js */ const { wait } = require('../src/wait') const { expect } = require('@jest/globals')