* What we have is a nextjs app for displaying a single dataset (+ tests, +fixtures etc) * Also included are relevant generic components (e.g. a Chart and Table view) and some utilities for loading (Frictionless) datasets * Not include (but to come) is the command line app
9 lines
357 B
JavaScript
9 lines
357 B
JavaScript
module.exports = {
|
|
testPathIgnorePatterns: ["<rootDir>/.next/", "<rootDir>/node_modules/"],
|
|
setupFilesAfterEnv: ["<rootDir>/tests/setupTests.js"],
|
|
setupFiles: ["<rootDir>/tests/setupTests.js"],
|
|
transform: {
|
|
"^.+\\.(js|jsx|ts|tsx)$": "<rootDir>/node_modules/babel-jest",
|
|
"\\.(css|less|scss|sass)$": "identity-obj-proxy"
|
|
}
|
|
}; |