-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathrobot.test.js
66 lines (42 loc) · 1.03 KB
/
robot.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
const {newRobot, station, isWorkday, prioritizeTasks} = require("./robot.js");
// remove .skip when you're ready to implement the test
test.skip('test_that_foreign_robot_needing_repairs_sent_to_station_1', () => {
// arrange
// act
// assert
});
test.skip('test_that_vintage_robot_needing_repairs_sent_to_station_2', () => {
// arrange
// act
// assert
});
test.skip('test_that_standard_robot_needing_repairs_sent_to_station_3', () => {
// arrange
// act
// assert
});
test.skip('test_that_robot_in_good_condition_sent_to_station_4', () => {
// arrange
// act
// assert
});
test.skip('test_prioritize_tasks_with_empty_todo_list_returns_negative_one', () => {
// arrange
// act
// assert
})
test.skip('test_prioritize_tasks_with_todos_returns_max_todo_value', () => {
// arrange
// act
// assert
});
test.skip('test_workday_on_day_off_returns_false', () => {
// arrange
// act
// assert
});
test.skip('test_workday_not_day_off_returns_true', () => {
// arrange
// act
// assert
});