mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 17:43:59 +00:00
b2b4c64807
Co-authored-by: Pooya Parsa <pyapar@gmail.com>
17 lines
526 B
TypeScript
17 lines
526 B
TypeScript
import { expect } from 'chai'
|
|
import { TrsnsformPlugin } from '../src/transform'
|
|
|
|
describe('module:global-imports:build', () => {
|
|
const { transform } = TrsnsformPlugin.raw({ ref: 'vue' })
|
|
|
|
it('should correct inject', () => {
|
|
expect(transform('const a = ref(0)', ''))
|
|
.to.equal('import { ref } from \'vue\';const a = ref(0)')
|
|
})
|
|
|
|
it('should ignore imported', () => {
|
|
expect(transform('import { ref } from "foo";const a = ref(0)', ''))
|
|
.to.equal('import { ref } from "foo";const a = ref(0)')
|
|
})
|
|
})
|