@@ -131,11 +131,11 @@ describe('Game', () => {
131131 expect ( game . navigator ( ) ) . toEqual ( 'Rita' ) ;
132132 expect ( game . next ( ) ) . toEqual ( 'Peter' ) ;
133133 expect ( game . positionOf ( 'Max' ) ) . toEqual ( 'Typing' ) ;
134- expect ( game . positionOf ( 'Rita' ) ) . toEqual ( 'Navigator ' ) ;
134+ expect ( game . positionOf ( 'Rita' ) ) . toEqual ( 'Talking ' ) ;
135135 expect ( game . positionOf ( 'Peter' ) ) . toEqual ( 'Mobber' ) ;
136136 } ) ;
137137
138- it ( 'set the direction of roles: Navigator , Typing' , ( ) => {
138+ it ( 'set the direction of roles: Talking , Typing' , ( ) => {
139139 const game = createGame ( ) ;
140140 game . setPlayers ( 'Max,Rita,Peter' ) ;
141141
@@ -145,11 +145,11 @@ describe('Game', () => {
145145 expect ( game . navigator ( ) ) . toEqual ( 'Max' ) ;
146146 expect ( game . next ( ) ) . toEqual ( 'Peter' ) ;
147147 expect ( game . positionOf ( 'Rita' ) ) . toEqual ( 'Typing' ) ;
148- expect ( game . positionOf ( 'Max' ) ) . toEqual ( 'Navigator ' ) ;
148+ expect ( game . positionOf ( 'Max' ) ) . toEqual ( 'Talking ' ) ;
149149 expect ( game . positionOf ( 'Peter' ) ) . toEqual ( 'Mobber' ) ;
150150 } ) ;
151151
152- it ( 'set the direction of roles: Typing, Navigator ' , ( ) => {
152+ it ( 'set the direction of roles: Typing, Talking ' , ( ) => {
153153 const game = createGame ( ) ;
154154 game . setPlayers ( 'Max,Rita,Peter' ) ;
155155 game . navigatorThenTyping ( ) ;
@@ -160,7 +160,7 @@ describe('Game', () => {
160160 expect ( game . navigator ( ) ) . toEqual ( 'Rita' ) ;
161161 expect ( game . next ( ) ) . toEqual ( 'Peter' ) ;
162162 expect ( game . positionOf ( 'Max' ) ) . toEqual ( 'Typing' ) ;
163- expect ( game . positionOf ( 'Rita' ) ) . toEqual ( 'Navigator ' ) ;
163+ expect ( game . positionOf ( 'Rita' ) ) . toEqual ( 'Talking ' ) ;
164164 expect ( game . positionOf ( 'Peter' ) ) . toEqual ( 'Mobber' ) ;
165165 } ) ;
166166
@@ -212,7 +212,7 @@ describe('Game', () => {
212212 expect ( game . typer ( ) ) . toEqual ( 'Rita' ) ;
213213 expect ( game . navigator ( ) ) . toEqual ( 'Peter' ) ;
214214 expect ( game . positionOf ( 'Rita' ) ) . toEqual ( 'Typing' ) ;
215- expect ( game . positionOf ( 'Peter' ) ) . toEqual ( 'Navigator ' ) ;
215+ expect ( game . positionOf ( 'Peter' ) ) . toEqual ( 'Talking ' ) ;
216216 expect ( game . positionOf ( 'Sam' ) ) . toEqual ( 'Mobber' ) ;
217217 expect ( game . positionOf ( 'Max' ) ) . toEqual ( 'Mobber' ) ;
218218 } ) ;
@@ -228,7 +228,7 @@ describe('Game', () => {
228228 expect ( game . typer ( ) ) . toEqual ( 'Rita' ) ;
229229 expect ( game . navigator ( ) ) . toEqual ( 'Peter' ) ;
230230 expect ( game . positionOf ( 'Rita' ) ) . toEqual ( 'Typing' ) ;
231- expect ( game . positionOf ( 'Peter' ) ) . toEqual ( 'Navigator ' ) ;
231+ expect ( game . positionOf ( 'Peter' ) ) . toEqual ( 'Talking ' ) ;
232232 expect ( game . positionOf ( 'Sam' ) ) . toEqual ( 'Mobber' ) ;
233233 expect ( game . positionOf ( 'Max' ) ) . toEqual ( 'Mobber' ) ;
234234 } ) ;
@@ -254,7 +254,7 @@ describe('Game', () => {
254254 expect ( game . typer ( ) ) . toEqual ( 'Peter' ) ;
255255 expect ( game . navigator ( ) ) . toEqual ( 'Rita' ) ;
256256 expect ( game . positionOf ( 'Peter' ) ) . toEqual ( 'Typing' ) ;
257- expect ( game . positionOf ( 'Rita' ) ) . toEqual ( 'Navigator ' ) ;
257+ expect ( game . positionOf ( 'Rita' ) ) . toEqual ( 'Talking ' ) ;
258258 expect ( game . positionOf ( 'Sam' ) ) . toEqual ( 'Mobber' ) ;
259259 expect ( game . positionOf ( 'Max' ) ) . toEqual ( 'Mobber' ) ;
260260 } ) ;
@@ -287,7 +287,7 @@ describe('Game', () => {
287287 "roles": {
288288 "Mobber": 3,
289289 "Typing": 0,
290- "Navigator ": 0,
290+ "Talking ": 0,
291291 "Researcher": 0
292292 },
293293 "badges": ["Mobber"]
0 commit comments