반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Tags
- JavaScript
- Cypress
- web vital
- msw
- QUIC
- import.meta.env
- ts error
- custom command
- https
- Testing
- http3
- svelte
- 비동기
- CloudFlare
- ViTE
- caching
- vue3
- rendering
- api test
- vue
- TLS
- e2e
- devtools
- typeScript
- vue-cli
- CSS
- csr
- 선택자
- aws
- SSR
Archives
- Today
- Total
목록2023/07/17 (2)
Develop Note by J.S.
[Typescript] TS1484 VerbatimModuleSyntax
verbatimModuleSyntax Typescript 5.0 부터 Module elision(생략)를 명확하게 할 수 있는 옵션입니다. 만약 Type 지정만을 위한 import일 경우 빌드 시 해당 import가 삭제(elision)되는데, 해당 옵션으로 인해, type지정을 위한 import인 경우 type-only 형식으로 import해야 합니다. 1) Error Message 2) Type 키워드 사용
Language/Typescript
2023. 7. 17. 15:36
[Cypress] Cypress + MSW
Cypress에 MSW(Mock Service Worker) 를 적용하여 테스트 하는 환경 세팅 방법입니다 . cypress/support/e2e.ts (or index.ts : cypress 버전에 따라 다름)에서 기존에 mockup api를 정의한 /src 디렉토리 내 mocking 파일을 불러와 Worker를 시작합니다. 1. e2e.ts import './commands'; import { setupWorker } from 'msw'; import authMocking from '@/services/mocking/auth.mocking'; // 경로문제발생! export const mocking = setupWorker(...authMocking); before(() => { // MSW 워커를 ..
FrontEnd/Cypress
2023. 7. 17. 11:06