Skip to content

Commit 44a3292

Browse files
Fix malformed engine entry in build-ts-extension test fixture
The engines list takes either a string (engine name) or an object with a path. The fixture had 'test-engine.js' as a bare string, which would register an engine named 'test-engine.js' rather than point at the bundled module.
1 parent 5cd0c86 commit 44a3292

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/smoke/build-ts-extension/_extensions/test-engine/_extension.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ version: 1.0.0
44
quarto-required: ">=1.6.0"
55
contributes:
66
engines:
7-
- test-engine.js
7+
- path: test-engine.js

0 commit comments

Comments
 (0)