mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 20:54:07 -08:00
ci: Fix build (no-changelog) (#6379)
This commit is contained in:
parent
dba3f44bc0
commit
78763c8320
|
@ -1,5 +1,11 @@
|
||||||
import { createEventBus } from '../event-bus';
|
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()', () => {
|
describe('createEventBus()', () => {
|
||||||
const eventBus = createEventBus();
|
const eventBus = createEventBus();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue