-
Notifications
You must be signed in to change notification settings - Fork 109
/
functions.test.js
95 lines (77 loc) · 2.27 KB
/
functions.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
const functions = require('./functions');
// beforeEach(() => initDatabase());
// afterEach(() => closeDatabase());
// beforeAll(() => initDatabase());
// afterAll(() => closeDatabase());
// const initDatabase = () => console.log('Database Initialized...');
// const closeDatabase = () => console.log('Database Closed...');
const nameCheck = () => console.log('Checking Name....');
describe('Checking Names', () => {
beforeEach(() => nameCheck());
test('User is Jeff', () => {
const user = 'Jeff';
expect(user).toBe('Jeff');
});
test('User is Karen', () => {
const user = 'Karen';
expect(user).toBe('Karen');
});
});
// toBe
test('Adds 2 + 2 to equal 4', () => {
expect(functions.add(2, 2)).toBe(4);
});
// not
test('Adds 2 + 2 to NOT equal 5', () => {
expect(functions.add(2, 2)).not.toBe(5);
});
// CHECK FOR TRUTHY & FALSY VALUES
// toBeNull matches only null
// toBeUndefined matches only undefined
// toBeDefined is the opposite of toBeUndefined
// toBeTruthy matches anything that an if statement treats as true
// toBeFalsy matches anything that an if statement treats as false
// toBeNull
test('Should be null', () => {
expect(functions.isNull()).toBeNull();
});
// toBeFalsy
test('Should be falsy', () => {
expect(functions.checkValue(undefined)).toBeFalsy();
});
// toEqual
test('User should be Brad Traversy object', () => {
expect(functions.createUser()).toEqual({
firstName: 'Brad',
lastName: 'Traversy'
});
});
// Less than and greater than
test('Should be under 1600', () => {
const load1 = 800;
const load2 = 800;
expect(load1 + load2).toBeLessThanOrEqual(1600);
});
// Regex
test('There is no I in team', () => {
expect('team').not.toMatch(/I/i);
});
// Arrays
test('Admin should be in usernames', () => {
usernames = ['john', 'karen', 'admin'];
expect(usernames).toContain('admin');
});
// Working with async data
// Promise
// test('User fetched name should be Leanne Graham', () => {
// expect.assertions(1);
// return functions.fetchUser().then(data => {
// expect(data.name).toEqual('Leanne Graham');
// });
// });
// Async Await
test('User fetched name should be Leanne Graham', async () => {
expect.assertions(1);
const data = await functions.fetchUser();
expect(data.name).toEqual('Leanne Graham');
});