소스 검색

Clock test allows slight variance for amount of real time passage.

master
Bryan Miller 5 년 전
부모
커밋
d137381005
1개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. +4
    -2
      test/unit.src.common.clock.spec.js

+ 4
- 2
test/unit.src.common.clock.spec.js 파일 보기

let dt = speedTest(ts); let dt = speedTest(ts);
expect(count).to.be.gt(ts - d); expect(count).to.be.gt(ts - d);
expect(count).to.be.lt(ts + d); expect(count).to.be.lt(ts + d);
expect(dt).to.be.lt(1000);
expect(dt).to.be.gt(990);
expect(dt).to.be.lt(1010);
}); });


it("4Mhz for approx. 1 second", function(){ it("4Mhz for approx. 1 second", function(){
let dt = speedTest(ts); let dt = speedTest(ts);
expect(count).to.be.gt(ts - d); expect(count).to.be.gt(ts - d);
expect(count).to.be.lt(ts + d); expect(count).to.be.lt(ts + d);
expect(dt).to.be.lt(1000);
expect(dt).to.be.gt(990);
expect(dt).to.be.lt(1010);
}); });
}); });

Loading…
취소
저장