mirror of
https://github.com/4ian/GDevelop.git
synced 2025-10-15 10:19:04 +00:00
10 lines
313 B
JavaScript
10 lines
313 B
JavaScript
import expect from 'expect.js';
|
|
import sinon from 'sinon';
|
|
|
|
// Expose expect.js and sinon globally like Karma used to do.
|
|
// Vitest provides its own expect, but tests rely on expect.js syntax.
|
|
// eslint-disable-next-line no-undef
|
|
global.expect = expect;
|
|
// eslint-disable-next-line no-undef
|
|
global.sinon = sinon;
|