Apply 2 suggestion(s) to 2 file(s)

This commit is contained in:
Oliver Rümpelein 2021-01-03 14:49:21 +01:00
parent aaa10d7469
commit f98da0cd99
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
import "jasmine";
import { isDiceSwapNecessary } from "../../../src/module/rolls/roll-utils";
describe("Utility function testing if dice swap is necessery", () => {
describe("Utility function testing if dice swap is necessary", () => {
it("Should not swap if all dice are crit successes.", () => {
expect(isDiceSwapNecessary([1, 1, 1], [], 9)).toBeFalse();
});