반응형
java는 junit이라는 훌륭한 테스트 모듈이 있는데
javascript도 정말 좋은 테스트 모듈이 있습니다.
1. 공식 홈페이지
2. 사용방법
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>QUnit Example</title>
<link rel="stylesheet" href="qunit.css">
<script>
test( "hello test", function() {
ok( 1 == "1", "Passed!" );
});
</script>
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="qunit.js"></script>
<script src="tests.js"></script>
</body>
</html>
3. 결과화면
728x90
반응형
'웹 개발' 카테고리의 다른 글
javascript] json isEmpty (빈 오브젝트인지 검사 empty object) (0) | 2019.08.23 |
---|---|
[javascript] jquery를 이용하여 tag의 첫번째 자리 (index 0)에 element 추가하기 (0) | 2019.08.23 |
[java] HashMap, HashTable, LinkedHashMap, ConcurrentHashMap (0) | 2019.08.23 |
javascript: variable as array key (변수를 배열의 키로 사용) (0) | 2019.08.23 |
java로 exe 파일 읽어서 특정 문자열을 바꾸어 저장하기 (0) | 2019.08.23 |