ci: Fix build (no-changelog) (#6379)

This commit is contained in:
Iván Ovejero 2023-06-06 13:44:24 +02:00 committed by GitHub
parent dba3f44bc0
commit 78763c8320
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,11 @@
import { createEventBus } from '../event-bus';
// @TODO: Remove when conflicting vitest and jest globals are reconciled
declare global {
// eslint-disable-next-line @typescript-eslint/consistent-type-imports
const vi: typeof import('vitest')['vitest'];
}
describe('createEventBus()', () => {
const eventBus = createEventBus();