타입스크립트, 바벨 npm 설정
패키지 설치
테스트 관련
$ npm install --save-dev jest @types/jest
타입스크립트, 바벨관련
$ npm install --save-dev typescript
NPM 셋업
설정파일 생성
설치 중간에 test command를 입력하라는 prompt가 나오면 jest
로 입력한다. npm run test
명령어를 통해 테스트를 수행 할 수 있게 만들기 위한 부분이다.
$ npm init
스크립트 추가
- package.json
{
"name": "class-enum",
"version": "0.0.1",
"description": "class enum",
"main": "index.js",
"scripts": {
"test": "jest",
"compile": "tsc",
"build": "jest && tsc"
},
...
...
}
폴더 생성
$ mkdir src tests && touch ./src/index.ts
나의 모듈 생성
내가 만들고싶은 모듈을 작성한다.
- ./src/index.ts
export default class ClassEnum {
...
}
타입스크립트 설정파일 생성
아래 명령어를 입력하면 tsconfig.json
파일이 생성된다. 필요없는 주석은 삭제한다.
$ ./node_modules/typescript/bin/tsc --init
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"outDir": "./dist",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": [
"src/**/*",
"tests/**/*"
]
}
테스트 생성 및 실행
테스트 파일을 하나 만들어 jest
가 잘 실행되는지 확인한다.
- ./tests/index.test.ts
import ClassEnum from "../src/index"
test('always true', () => {
expect(1).toBe(1);
});
$ npm run test
오류 발생
> class-enum@0.0.1 test
> jest
FAIL tests/index.test.ts
● Test suite failed to run
Jest encountered an unexpected token
Jest failed to parse a file. This happens e.g. when your code or its dependencies use non-standard JavaScript syntax, or when Jest is not configured to support such syntax.
Out of the box Jest supports Babel, which will be used to transform your files into valid JS based on your Babel configuration.
By default "node_modules" folder is ignored by transformers.
Here's what you can do:
• If you are trying to use ECMAScript Modules, see https://jestjs.io/docs/ecmascript-modules for how to enable it.
• If you are trying to use TypeScript, see https://jestjs.io/docs/getting-started#using-typescript
• To have some of your "node_modules" files transformed, you can specify a custom "transformIgnorePatterns" in your config.
• If you need a custom transformation specify a "transform" option in your config.
• If you simply want to mock your non-JS modules (e.g. binary assets) you can stub them out with the "moduleNameMapper" config option.
You'll find more details and examples of these config options in the docs:
https://jestjs.io/docs/configuration
For information about custom transformations, see:
https://jestjs.io/docs/code-transformation
Details:
/Users/hodolman/work/class-enum/tests/index.test.ts:1
({"Object.<anonymous>":function(module,exports,require,__dirname,__filename,jest){import ClassEnum from "../src/index";
^^^^^^
SyntaxError: Cannot use import statement outside a module
at Runtime.createScriptFromCode (node_modules/jest-runtime/build/index.js:1728:14)
바벨 & 바벨 타입스크립트 설치
$ npm install --save-dev @babel/core @babel/cli @babel/preset-typescript
바벨 설정파일 생성
- babel.config.js
module.exports = {
presets: [
['@babel/preset-env', {targets: {node: 'current'}}],
'@babel/preset-typescript',
],
};
테스트 실행
$ npm run test
> class-enum@0.0.1 test
> jest
PASS tests/index.test.ts
✓ always true (1 ms)
Test Suites: 1 passed, 1 total
Tests: 1 passed, 1 total
Snapshots: 0 total
Time: 0.775 s
Ran all test suites.
'개발 > Frontend' 카테고리의 다른 글
Next.js 서버 실행시 host가 private ip로 bind되는 경우 (1) | 2024.06.27 |
---|---|
(React) proxy기반의 반응형데이터 관리 (0) | 2022.07.08 |
Vue.js 간단한 플러그인 만들기 (0) | 2020.11.20 |
webpack에서 splitChunks 무시하기 (Vue.js) (0) | 2019.11.27 |