-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhand.test.ts
57 lines (56 loc) · 1.97 KB
/
hand.test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import { GameConfig } from '../src/types';
import { describe, expect, test } from 'vitest';
import { stacksInHand, tilesInHand } from '../src/hand';
import { createBaseGameConfig } from '../src/game';
describe('player hands', () => {
describe('getStacksInHand', () => {
test('all stacks in hand', () => {
const config: GameConfig = createBaseGameConfig({
ladybug: true,
mosquito: true,
pillbug: true
});
const blackHand = stacksInHand({}, 'b', config);
const whiteHand = stacksInHand({}, 'w', config);
expect(blackHand).toHaveLength(8);
expect(whiteHand).toHaveLength(8);
expect(blackHand).toEqual(
expect.arrayContaining([
expect.arrayContaining(['bA', 'bA', 'bA']),
expect.arrayContaining(['bB', 'bB']),
expect.arrayContaining(['bG', 'bG', 'bG']),
expect.arrayContaining(['bS', 'bS']),
expect.arrayContaining(['bQ']),
expect.arrayContaining(['bL']),
expect.arrayContaining(['bM']),
expect.arrayContaining(['bP'])
])
);
expect(whiteHand).toEqual(
expect.arrayContaining([
expect.arrayContaining(['wA', 'wA', 'wA']),
expect.arrayContaining(['wB', 'wB']),
expect.arrayContaining(['wG', 'wG', 'wG']),
expect.arrayContaining(['wS', 'wS']),
expect.arrayContaining(['wQ']),
expect.arrayContaining(['wL']),
expect.arrayContaining(['wM']),
expect.arrayContaining(['wP'])
])
);
});
});
describe('getTilesInHand', () => {
const options: GameConfig = createBaseGameConfig({
ladybug: true,
mosquito: true,
pillbug: true
});
test('all tiles in hand', () => {
const blackHand = tilesInHand({ 0: { 0: ['bQ'] } }, 'b', options);
const whiteHand = tilesInHand({ 0: { 0: ['wQ', 'wM'] } }, 'w', options);
expect(blackHand).toHaveLength(13);
expect(whiteHand).toHaveLength(12);
});
});
});