๐ Reference
๐ Chapter
โฃ
@vue/test-utils
โฃ
โฃ
โฃ
โฃ
Pinia
nextTick()
msw
Vue Test Utils
- VTU
- Test Utils๋ Vue ๊ตฌ์ฑ ์์๋ฅผ ๋ง์ดํธํ๊ณ ์ํธ ์์ฉํ๋ ๋ฐฉ๋ฒ์ ์ ๊ณตํ๋ Vue ํ
์คํธ ๋ผ์ด๋ธ๋ฌ๋ฆฌ์ด๋ค.
- Vue framework ๋ฅผ ํ
์คํธํ๊ธฐ ์ํ ๋ผ์ด๋ธ๋ฌ๋ฆฌ ์ด๋ค.
- Component ๊ธฐ๋ฐ์ ๋๋๋ง ์ง์๋ถํฐ ์์ํด์, user ์ interaction ๊น์ง ํ
์คํธํด๋ณผ ์ ์๋ค.
Vue ์ธ์คํด์ค ์์ฑ
- Vue ์์ฑ์๋ฅผ ์ด์ฉํด Vue ์ธ์คํด์ค๋ฅผ ์์ฑํ๊ณ ์ธ์คํด์ค ๋ฉ์๋
$mount
๋ฅผ ์ด์ฉํ๋ ๋ฐฉ๋ฒ๋ ์์ง๋ง VTU์์ ์ ๊ณตํ๋ ํจ์๋ฅผ ํตํด ์ฝ๊ฒ Vue ์ธ์คํด์ค๋ฅผ ์์ฑํ๊ณ ๋ง์ดํธํ ์ ์๋ค.
import Vue from 'vue'
import RegisterPage form '@/views/RegisterPage'
// ์์ฑ์ ๊ธฐ๋ฐ
const Constructor = Vue.extend(ReigsterPage)
const vm = new Constructor().$mount
// VTU ์ฌ์ฉ
import { mount } form '@vue/test-utils'
const wrapper = mount(RegisterPage)
- VTU์
mount()
, shallowMount()
๋ฉ์๋๋ฅผ ์ด์ฉํด ๋ทฐ ์ธ์คํด์ค๋ฅผ ์์ฑํ๊ณ ๋ง์ดํธํ ์ ์๋ค.
- ์ด ๋ฉ์๋๋ ํ
์คํ
์ ์ํ wrapper ๊ฐ์ฒด๋ฅผ ๋ฐํํ๋ค.
- ์ผ๋ฐ์ ์ธ Vue ์ธ์คํด์ค์๋ ๋ค๋ฅด๋ ๊ตฌ๋ณํด์ผ ํ๋ค.