@@ -41,7 +41,7 @@ describe('Working with the blocks', () => {
41
41
await findByText ( 'apple banana' , scope . reportedValue ) ; // Tooltip with result
42
42
const logs = await getLogs ( ) ;
43
43
await expect ( logs ) . toEqual ( [ ] ) ;
44
- } ) ;
44
+ } , 60 * 1000 ) ;
45
45
46
46
test ( 'Switching sprites updates the block menus' , async ( ) => {
47
47
await loadUri ( uri ) ;
@@ -56,7 +56,7 @@ describe('Working with the blocks', () => {
56
56
57
57
const logs = await getLogs ( ) ;
58
58
await expect ( logs ) . toEqual ( [ ] ) ;
59
- } ) ;
59
+ } , 60 * 1000 ) ;
60
60
61
61
test ( 'Creating variables' , async ( ) => {
62
62
await loadUri ( uri ) ;
@@ -103,7 +103,7 @@ describe('Working with the blocks', () => {
103
103
104
104
const logs = await getLogs ( ) ;
105
105
await expect ( logs ) . toEqual ( [ ] ) ;
106
- } ) ;
106
+ } , 60 * 1000 ) ;
107
107
108
108
test ( 'Creating a list' , async ( ) => {
109
109
await loadUri ( uri ) ;
@@ -143,7 +143,7 @@ describe('Working with the blocks', () => {
143
143
144
144
const logs = await getLogs ( ) ;
145
145
await expect ( logs ) . toEqual ( [ ] ) ;
146
- } ) ;
146
+ } , 60 * 1000 ) ;
147
147
148
148
test ( 'Custom procedures' , async ( ) => {
149
149
await loadUri ( uri ) ;
@@ -160,7 +160,7 @@ describe('Working with the blocks', () => {
160
160
161
161
const logs = await getLogs ( ) ;
162
162
await expect ( logs ) . toEqual ( [ ] ) ;
163
- } ) ;
163
+ } , 60 * 1000 ) ;
164
164
165
165
test ( 'Adding an extension' , async ( ) => {
166
166
await loadUri ( uri ) ;
@@ -173,7 +173,7 @@ describe('Working with the blocks', () => {
173
173
174
174
const logs = await getLogs ( ) ;
175
175
await expect ( logs ) . toEqual ( [ ] ) ;
176
- } ) ;
176
+ } , 60 * 1000 ) ;
177
177
178
178
test ( 'Record option from sound block menu opens sound recorder' , async ( ) => {
179
179
await loadUri ( uri ) ;
@@ -207,7 +207,7 @@ describe('Working with the blocks', () => {
207
207
await clickText ( 'Code' ) ;
208
208
await clickBlocksCategory ( 'Looks' ) ;
209
209
await clickText ( 'newname' , scope . blocksTab ) ;
210
- } ) ;
210
+ } , 60 * 1000 ) ;
211
211
212
212
test . skip ( 'Renaming costume with a special character should not break toolbox' , async ( ) => {
213
213
await loadUri ( uri ) ;
@@ -228,7 +228,7 @@ describe('Working with the blocks', () => {
228
228
await clickText ( '<NewCostume>' , scope . blocksTab ) ;
229
229
230
230
await clickBlocksCategory ( 'Sound' ) ;
231
- } ) ;
231
+ } , 60 * 1000 ) ;
232
232
233
233
test ( 'Adding costumes DOES update the default costume name in the toolbox' , async ( ) => {
234
234
await loadUri ( uri ) ;
@@ -251,7 +251,7 @@ describe('Working with the blocks', () => {
251
251
// Check that the menu has been updated
252
252
await clickText ( 'Code' ) ;
253
253
await clickText ( 'costume2' , scope . blocksTab ) ;
254
- } ) ;
254
+ } , 60 * 1000 ) ;
255
255
256
256
// Skipped because it was flakey on travis, but seems to run locally ok
257
257
test ( 'Adding a sound DOES update the default sound name in the toolbox' , async ( ) => {
@@ -265,7 +265,7 @@ describe('Working with the blocks', () => {
265
265
await clickText ( 'Code' ) ;
266
266
await clickBlocksCategory ( 'Sound' ) ;
267
267
await clickText ( 'A\u00A0Bass' , scope . blocksTab ) ; // Need for block text
268
- } ) ;
268
+ } , 60 * 1000 ) ;
269
269
270
270
// Regression test for switching between editor/player causing toolbox to stop updating
271
271
test ( '"See inside" after being on project page re-initializing variables' , async ( ) => {
@@ -280,7 +280,7 @@ describe('Working with the blocks', () => {
280
280
281
281
await clickBlocksCategory ( 'Variables' ) ;
282
282
await clickText ( 'my\u00A0variable' ) ;
283
- } ) ;
283
+ } , 60 * 1000 ) ;
284
284
285
285
// Regression test for switching editor tabs causing toolbox to stop updating
286
286
test ( 'Creating variables after adding extensions updates the toolbox' , async ( ) => {
@@ -293,7 +293,7 @@ describe('Working with the blocks', () => {
293
293
await el . sendKeys ( 'list1' ) ;
294
294
await clickButton ( 'OK' ) ;
295
295
await clickText ( 'list1' , scope . blocksTab ) ;
296
- } ) ;
296
+ } , 60 * 1000 ) ;
297
297
298
298
test ( 'Use variable blocks after switching languages' , async ( ) => {
299
299
const myVariable = 'my\u00A0variable' ;
@@ -335,5 +335,5 @@ describe('Working with the blocks', () => {
335
335
// check it is turned up to 11
336
336
await clickText ( myVariable ) ;
337
337
await findByText ( '11' , scope . reportedValue ) ;
338
- } ) ;
338
+ } , 60 * 1000 ) ;
339
339
} ) ;
0 commit comments