Skip to content

Commit

Permalink
test: Validate asyncapi.json using asyncapi/parser
Browse files Browse the repository at this point in the history
  • Loading branch information
timonback committed Jan 28, 2024
1 parent ad68c30 commit e9d67eb
Show file tree
Hide file tree
Showing 6 changed files with 1,334 additions and 817 deletions.
16 changes: 16 additions & 0 deletions springwolf-ui/jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/** @type {import('jest').Config} */

const esModules = ['@angular', 'jsonpath-plus', '@stoplight', 'nimma'];

const config = {
preset: 'jest-preset-angular',
setupFilesAfterEnv: ['<rootDir>/setup-jest.ts'],
"modulePathIgnorePatterns": [
"<rootDir>/build/"
],
"transformIgnorePatterns": [
`<rootDir>/node_modules/(?!.*\\.mjs$|${esModules.join('|')})`,
],
};

module.exports = config;
Loading

0 comments on commit e9d67eb

Please sign in to comment.