Skip to content

Commit

Permalink
test(ui): Validate asyncapi.json using asyncapi/parser (#570)
Browse files Browse the repository at this point in the history
  • Loading branch information
timonback authored Feb 2, 2024
1 parent 101bb8f commit 078d507
Show file tree
Hide file tree
Showing 6 changed files with 1,343 additions and 858 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 078d507

Please sign in to comment.