We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5d98bc commit 07bb33aCopy full SHA for 07bb33a
1 file changed
packages/app/src/cli/models/app/loader.test.ts
@@ -2249,8 +2249,8 @@ describe('load', () => {
2249
// When
2250
const app = await loadTestingApp()
2251
2252
- // Then
2253
- expect(app.allExtensions[0]!.outputPath).toMatch(/wasm32-wasi\/release\/my-function.wasm/)
+ // Then - outputPath always defaults to dist/index.wasm at load time; build.path is applied by buildFunctionExtension
+ expect(app.allExtensions[0]!.outputPath).toMatch(/dist\/index\.wasm/)
2254
})
2255
2256
test(`defaults the function wasm path if not configured`, async () => {
0 commit comments