14 lines
282 B
JavaScript
14 lines
282 B
JavaScript
import { getAC, getIC } from '../iccalc';
|
|
|
|
describe('iccalc', () => {
|
|
it('returns 45 ap cost for SR 16 IC 5', () => {
|
|
const ap = getIC(5, 16);
|
|
expect(ap).toBe(45);
|
|
});
|
|
|
|
it('returns 4 ap cost for activating IC 4', () => {
|
|
const ap = getAC(4);
|
|
expect(ap).toBe(4);
|
|
});
|
|
});
|