mirror of
https://github.com/bendtherules/ask262.git
synced 2026-08-18 13:21:55 +00:00
test(bunfig): add pathIgnorePatterns to ignore unnecessary folders during testing
- 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.
This commit is contained in:
+14
-2
@@ -1,3 +1,15 @@
|
|||||||
[test]
|
[test]
|
||||||
# Only run tests in the test/ directory, ignoring engine262/ and other subdirectories
|
# Ignore these folders during testing and module resolution
|
||||||
root = "./test"
|
pathIgnorePatterns = [
|
||||||
|
"engine262/**",
|
||||||
|
"spec-built/**",
|
||||||
|
"node_modules/**",
|
||||||
|
"dist/**",
|
||||||
|
"build/**",
|
||||||
|
"coverage/**",
|
||||||
|
".idea/**",
|
||||||
|
"docs/**",
|
||||||
|
"storage/**",
|
||||||
|
"graphology/**",
|
||||||
|
".git/**",
|
||||||
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user