mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-04 07:46:21 +02:00
12 lines
267 B
JavaScript
12 lines
267 B
JavaScript
const chaiPlugin = require('./plugins/chai');
|
|
const shouldPlugin = require('./plugins/should');
|
|
const jestPlugin = require('./plugins/jest');
|
|
const validators = require('./validators');
|
|
|
|
module.exports = {
|
|
chaiPlugin,
|
|
jestPlugin,
|
|
shouldPlugin,
|
|
validators,
|
|
};
|