Merge pull request #6917 from caucik/fix-testing

chore: added mocha config to properly include Reflect via root hooks
This commit is contained in:
Kamil Mysliwiec
2021-06-28 12:38:39 +02:00
committed by GitHub

7
.mocharc.js Normal file
View File

@@ -0,0 +1,7 @@
module.exports = {
mochaHooks: {
beforeAll: function() {
require('reflect-metadata');
}
}
};