summaryrefslogtreecommitdiff
path: root/packages/integrations/vue/test/toTsx.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/integrations/vue/test/toTsx.test.js')
-rw-r--r--packages/integrations/vue/test/toTsx.test.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/integrations/vue/test/toTsx.test.js b/packages/integrations/vue/test/toTsx.test.js
index bf2af56a9..b91b5cad1 100644
--- a/packages/integrations/vue/test/toTsx.test.js
+++ b/packages/integrations/vue/test/toTsx.test.js
@@ -22,7 +22,7 @@ describe('toTSX function', () => {
// Replace the expectations below with the expected result based on your logic
assert.strictEqual(
result,
- `export default function ${className}__AstroComponent_(_props: Record<string, any>): any {}`
+ `export default function ${className}__AstroComponent_(_props: Record<string, any>): any {}`,
);
});
it('should correctly transform Vue code to TSX', () => {
@@ -45,7 +45,7 @@ describe('toTSX function', () => {
const result = toTSX(vueCode, className);
assert.strictEqual(
result.replace(/\s/g, ''),
- `import{defineProps}from'vue';constProps=defineProps({msg:String})exportdefaultfunction${className}__AstroComponent_(_props:typeofProps):any{<div></div>}`
+ `import{defineProps}from'vue';constProps=defineProps({msg:String})exportdefaultfunction${className}__AstroComponent_(_props:typeofProps):any{<div></div>}`,
);
});
});