From d2284395034b83150ad79af7479f8390778205f7 Mon Sep 17 00:00:00 2001 From: Tostti Date: Wed, 31 Jan 2024 14:12:56 -0300 Subject: [PATCH] Fix error in bootstrap --- .../src/integration_tests/build.test.ts | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/packages/osd-plugin-helpers/src/integration_tests/build.test.ts b/packages/osd-plugin-helpers/src/integration_tests/build.test.ts index 9a407db8ff8e..37e5b3aacd98 100644 --- a/packages/osd-plugin-helpers/src/integration_tests/build.test.ts +++ b/packages/osd-plugin-helpers/src/integration_tests/build.test.ts @@ -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, @@ -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,