diff --git a/packages/jest-reporters/src/__tests__/GithubActionsReporter.test.js b/packages/jest-reporters/src/__tests__/GithubActionsReporter.test.js index f71444cc8057..2103be40c42c 100644 --- a/packages/jest-reporters/src/__tests__/GithubActionsReporter.test.js +++ b/packages/jest-reporters/src/__tests__/GithubActionsReporter.test.js @@ -118,6 +118,7 @@ test("reporter returns empty string if GITHUB_ACTIONS isn't set", () => { testReporter.onRunComplete(new Set(), aggregatedResults); expect(results.join('').replace(/\\/g, '/')).toMatchSnapshot(); }); + test('reporter extracts the correct filename, line, and column', () => { process.env.GITHUB_ACTIONS = true;