UNPKG

slotify.js

Version:

A video slot game session framework for JavaScript

16 lines (12 loc) 497 B
import {IReelGameWithFreeGamesSessionConfig} from "./IReelGameWithFreeGamesSessionConfig"; import {ReelGameWithFreeGamesSessionConfig} from "./ReelGameWithFreeGamesSessionConfig"; describe("ReelGameSessionConfig", () => { it("creates default config", () => { const conf: IReelGameWithFreeGamesSessionConfig = new ReelGameWithFreeGamesSessionConfig(); expect(conf.freeGamesForScatters).toEqual({ S: { 3: 10, }, }); }); });