Skip to content

Commit

Permalink
Fix error in bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
Tostti committed Jan 31, 2024
1 parent 590fc12 commit d228439
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@ it('builds a generated plugin into a viable archive', async () => {
expect(generateProc.all).toMatchInlineSnapshot(`
" succ 🎉
Your plugin has been created in `);
Your plugin has been created in ${standardize('plugins/foo_test_plugin', false, true)}
"
`);

const buildProc = await execa(
process.execPath,
Expand Down Expand Up @@ -170,7 +172,9 @@ it('builds a non-semver generated plugin into a viable archive', async () => {
expect(generateProc.all).toMatchInlineSnapshot(`
" succ 🎉
Your plugin has been created in `);
Your plugin has been created in ${standardize('plugins/foo_test_plugin', false, true)}
"
`);

const buildProc = await execa(
process.execPath,
Expand Down

0 comments on commit d228439

Please sign in to comment.