[NodeJs] IntelliJ + Mocha Testing 연동하기
이 포스팅에서는 Mocha, Testing에 대해서는 별도로 설명하지 않는다.
IntelliJ와 Mocha를 연동하는 방법을 위주로 설명한다.
전제 조건
IntelliJ는 상용 버전이며 NodeJs 플러그인이 설치되어 있다.
의존성 설치
npm install -g mocha // mocha는 글로벌로 설치해도 상관없다.
npm install --save-dev chai // assertion 라이브러리 chai 설치
첫 테스트 생성
const expect = require('chai').expect;
describe('my test suite', function () {
it('fails majestically', function () {
expect(3).to.eql(2);
});
});
테스트 환경 설정
All in directory - Include subdirectories 체크
댓글 영역