-
Notifications
You must be signed in to change notification settings - Fork 1
/
suspense.test.js
49 lines (31 loc) · 991 Bytes
/
suspense.test.js
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
const getSuspeitos = require('./suspense').suspeitos;
const getSuspeitoById = require('./suspense').getSuspeitoById;
const validarTeoria = require('./suspense').validarTeoria;
test('Existe suspeitos', () => {
expect(getSuspeitos.length).toBeGreaterThanOrEqual(0);
});
test('Existe todos os suspeitos', () => {
expect(getSuspeitos.length).toBe(6);
});
test('Retorna Jogador 1', () => {
expect(getSuspeitoById(1).nome).toBe('Charles B. Abbage');
})
test('Teoria válida', () => {
const teoria = [ 2, 3, 4];
expect( validarTeoria( teoria ) ).toBe(0)
})
test('Suspeito inválido', () => {
const teoria = [ 1, 1, 1];
expect( validarTeoria( teoria ) ).toBe(1);
})
test('Local inválido', () => {
const teoria = [ 2, 1, 4];
expect( validarTeoria( teoria ) ).toBe(2);
})
test('arma inválido', () => {
const teoria = [ 2, 3, 1];
expect( validarTeoria( teoria ) ).toBe(3);
})
/*
test('Gerar teoria', () => { // valida Teoria: 2, 3, 4
}*/