Add latest changes from gitlab-org/gitlab@master

This commit is contained in:
GitLab Bot
2022-11-25 12:07:31 +00:00
parent f15cf65c53
commit 89474d2468
107 changed files with 1834 additions and 410 deletions

11
jest.config.contract.js Normal file
View File

@ -0,0 +1,11 @@
const baseConfig = require('./jest.config.base');
module.exports = () => {
return {
testMatch: baseConfig('spec/contracts/consumer').testMatch,
transform: {
'^.+\\.js$': 'babel-jest',
},
testEnvironment: baseConfig.testEnvironment,
};
};