Jasmine github 에 들어가서 starter 파일을 다운받거나, CDN을 사용할 수 있다. cdn css, js파일을 불러와 html 내에 link, script로 넣어준다. 내가 테스트 할 js 파일을 생성한다. 이 파일을 html에 script로 연결시킨다. 그리고 실행시키면 웹페이지에 테스트 결과가 나온다. >1 spec, 1 failure (빨간색) Get year dates > should be a number Expected '2019' to be 2019. spec : it failure : number가 아니라 string이어서 실패했다. >1 spec, 0 failure (초록색) => 성공 >1 spec, 0 failure (초록색) => 성공 >2 spec, 1 failure (빨간색) Get year dates > should be next year Expected 2023 to be 2020. 2