mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
cd34f00627
Some tests are running yarn install during the test. The directory used for isolation test is not subject to yarn workspace, and it occurs because the required package is not installed. In order to avoid this, I fixed all necessary packages to be installed before run test and use symlink to `node_modules`. This is a bit complicated, as `yarn install` needs to be run in a specific directory before running the test. However, running `yarn install` every time run the test is expensive when testing locally and should be avoided.
12 lines
170 B
JSON
12 lines
170 B
JSON
{
|
|
"private": true,
|
|
"workspaces": [
|
|
"actioncable",
|
|
"actiontext",
|
|
"activestorage",
|
|
"actionview"
|
|
],
|
|
"dependencies": {
|
|
"webpack": "^4.17.1"
|
|
}
|
|
}
|