We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61c6b9a commit cf74514Copy full SHA for cf74514
tests/integration/index.test.js
@@ -133,9 +133,11 @@ try {
133
134
describe('integration', () => {
135
testSetups.forEach(({ purpose, dir, results }) => {
136
+ const setupMethod = 'yarn' // @TODO detect yarn / pnpm / ... fallback npm
137
+
138
describe(purpose, () => {
139
const built = spawnSync(
- 'npm', ['run', 'build'], {
140
+ setupMethod, ['run', 'build'], {
141
cwd: path.resolve(module.path, dir),
142
stdio: ['ignore', 'pipe', 'pipe'],
143
encoding: 'utf8',
0 commit comments