mirror of
https://github.com/bendtherules/ask262.git
synced 2026-08-18 13:21:55 +00:00
- Removed default test root setting. - Introduced `pathIgnorePatterns` list with multiple directories (engine262, spec-built, node_modules, dist, build, coverage, .idea, docs, storage, graphology, .git) to be excluded from test runs and module resolution.
16 lines
269 B
TOML
16 lines
269 B
TOML
[test]
|
|
# Ignore these folders during testing and module resolution
|
|
pathIgnorePatterns = [
|
|
"engine262/**",
|
|
"spec-built/**",
|
|
"node_modules/**",
|
|
"dist/**",
|
|
"build/**",
|
|
"coverage/**",
|
|
".idea/**",
|
|
"docs/**",
|
|
"storage/**",
|
|
"graphology/**",
|
|
".git/**",
|
|
]
|