jsatomix
Version:
Tools for analysing and playing katomic/atomix type puzzles.
22 lines (19 loc) • 330 B
JavaScript
const test = require('tape')
const jsa = require('../')
test('gameObject-litmus', function (t) {
t.plan(1)
const game = jsa.gameObject.from(
jsa.solutions.all[1]
)
t.equal(game.toString(),
`###########
#..#...123#
#..#......#
#.##......#
#.#..#.####
#....#....#
###.#.....#
#.....#...#
###########`)
})