Nuxt/packages/nuxt3/test/global-imports.test.ts

23 lines
939 B
TypeScript
Raw Normal View History

import { expect } from 'chai'
2021-08-24 07:49:03 +00:00
import { TransformPlugin } from '../src/global-imports/transform'
describe('module:global-imports:build', () => {
const { transform: _transform } = TransformPlugin.raw({ ref: 'vue', computed: 'bar' }, {} as any)
const transform = (code: string) => _transform.call({} as any, code, '')
it('should correct inject', async () => {
const result = await transform('const a = ref(0)')
expect(result).to.equal('import { ref } from \'vue\';const a = ref(0)')
})
it('should ignore imported', async () => {
const result = await transform('import { ref } from "foo";const a = ref(0)')
expect(result).to.equal(null)
})
it('should ignore comments', async () => {
const result = await transform('// import { computed } from "foo"\n;const a = computed(0)')
expect(result).to.equal('import { computed } from \'bar\';// import { computed } from "foo"\n;const a = computed(0)')
})
})