✏️4.3 첫 번째 테스트
describe('province', () => {
it('shortfall', () => {
const asia = new Province(sampleProvinceData()); // 픽스처 설정
assert.equal(asia.shortfall, 5); // 검증
});
});실패해야 할 상황에서는 반드시 실패하게 만들자
describe('province', function() {
it('shortfall', function() {
const asia = new Province(sampleProvinceData());
assert.equal(asia.shortfall, 5);
});
});Last updated