Skip to content

Commit 9d3ae3d

Browse files
committed
Update tests
1 parent 080f58a commit 9d3ae3d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/__snapshots__/transform.test.ts.snap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ export default defineConfig({
148148
149149
exports[`transform fixtures test/fixtures/AsyncImport.vue 1`] = `
150150
"<script lang=\\"ts\\">
151-
import { defineAsyncComponent } from 'script-setup';
151+
import { defineAsyncComponent } from '@vue/composition-api';
152152
const ScriptOnly = defineAsyncComponent(() => import('./ScriptOnly.vue'));
153153
const __sfc_main = {};
154154

test/fixtures/AsyncImport.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script setup lang="ts">
2-
import { defineAsyncComponent } from 'script-setup'
2+
import { defineAsyncComponent } from '@vue/composition-api'
33
const ScriptOnly = defineAsyncComponent(() => import('./ScriptOnly.vue'))
44
</script>
55

0 commit comments

Comments
 (0)