simplify imports

This commit is contained in:
JM Faircloth 2024-03-11 13:07:35 -05:00
parent 4bafe0b29f
commit d0d1f7bdb4
13 changed files with 16 additions and 16 deletions

View file

@ -1,7 +1,7 @@
import { vi, describe, test, expect } from 'vitest';
vi.mock('@actions/core');
import * as core from '@actions/core';
import core from '@actions/core';
import got from 'got';
import { when } from 'jest-when'