We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f238b7 commit ac229bdCopy full SHA for ac229bd
.github/actions/src/info/__tests__/index.test.ts
@@ -2,6 +2,10 @@ import * as exec from '@actions/exec';
2
import { describe, expect, it, vi } from 'vitest';
3
import { checkForChanges } from '../index.js';
4
5
+vi.mock(import('lodash/memoize.js'), () => ({
6
+ default: (x: any) => x
7
+}) as any);
8
+
9
const mockedExecOutput = vi.spyOn(exec, 'getExecOutput');
10
11
describe('Test checkForChanges', () => {
0 commit comments