mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-21 14:37:49 +00:00
6217546894
This also updates code to use the default import syntax instead of `import * as` when the imported module exposes a default. This is needed with the latest typescript version. Change-type: patch
26 lines
916 B
TypeScript
26 lines
916 B
TypeScript
import chai from 'chai';
|
|
import chaiAsPromised from 'chai-as-promised';
|
|
import sinonChai from 'sinon-chai';
|
|
import chaiThings from 'chai-things';
|
|
import chaiLike from 'chai-like';
|
|
|
|
/**
|
|
* Mocha runs this EXACTLY ONCE before all tests to set up globals that
|
|
* are used among all test files, such as chai assertion plugins. See
|
|
* https://mochajs.org/#test-fixture-decision-tree-wizard-thing
|
|
*
|
|
* IMPORTANT: The functionality in this global fixture hook should not break any
|
|
* suite run in isolation, and it should be required by ALL test suites.
|
|
* If unsure whether to add to global fixtures, refer to the chart above.
|
|
* Also, avoid setting global mutable variables here.
|
|
*/
|
|
export const mochaGlobalSetup = function () {
|
|
console.log('Setting up global fixtures for tests...');
|
|
|
|
/* Setup chai assertion plugins */
|
|
chai.use(chaiAsPromised);
|
|
chai.use(sinonChai);
|
|
chai.use(chaiLike);
|
|
chai.use(chaiThings);
|
|
};
|