QUnit callback
Callback functions QUnit.log({result, actual, expected, message}) Assertion 이 종료되었을 때 호출. result 는 boolean. message는 string QUnit.start({name}) 하나의 test가 시작될 때 호출 , setup 과 같음 QUnit.testDown({name, failed, passed, total}) 하나의 test가 완료되었을 때 실행 , teardown 과 같음 QUnit.moduleStart({name}) 새로운 모듈의 test가 실행될 때 호출 QUnit.moduleDone({name, failed, passed, total}) 모듈의 test가 모두 완료되었을 때 호출 QUnit.begin() 테스트의..