Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/python/pants/backend/javascript/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,8 @@ python_sources()
python_tests(
name="tests",
)

resources(
name="test_resources",
sources=["test_resources/**/*"],
)
6 changes: 5 additions & 1 deletion src/python/pants/backend/javascript/goals/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ python_tests(
# The package.json files are inlined in ./test_integration_tests.py
overrides={
"test_integration_test.py": {
"dependencies": ["./jest_resources", "./mocha_resources"],
"dependencies": [
"./jest_resources",
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For my education: what is the distinction between these jest_resources and the ones under test_resources/jest_project?

"./mocha_resources",
"//src/python/pants/backend/javascript:test_resources",
],
"timeout": 240,
},
"export_test.py": {
Expand Down
Loading
Loading