@@ -65,19 +65,19 @@ test.cb.serial('gets a snapshot of task list entities', function (t) {
65
65
66
66
// Metadata
67
67
68
- test . cb ( 'performs a namespace query' , function ( t ) {
68
+ test . cb . serial ( 'performs a namespace query' , function ( t ) {
69
69
metadata . testNamespaceRunQuery ( t . end ) ;
70
70
} ) ;
71
71
72
- test . cb ( 'performs a kind query' , function ( t ) {
72
+ test . cb . serial ( 'performs a kind query' , function ( t ) {
73
73
metadata . testKindRunQuery ( t . end ) ;
74
74
} ) ;
75
75
76
- test . cb ( 'performs a property query' , function ( t ) {
76
+ test . cb . serial ( 'performs a property query' , function ( t ) {
77
77
metadata . testPropertyRunQuery ( t . end ) ;
78
78
} ) ;
79
79
80
- test . cb ( 'performs a property by kind query' , function ( t ) {
80
+ test . cb . serial ( 'performs a property by kind query' , function ( t ) {
81
81
metadata . testPropertyByKindRunQuery ( t . end ) ;
82
82
} ) ;
83
83
@@ -216,66 +216,66 @@ test.skip('performs an ancestor query', function (t) {
216
216
217
217
// Entities
218
218
219
- test . cb ( 'saves with an incomplete key' , function ( t ) {
219
+ test . cb . serial ( 'saves with an incomplete key' , function ( t ) {
220
220
entity . testIncompleteKey ( t . end ) ;
221
221
} ) ;
222
222
223
- test . cb ( 'saves with a named key' , function ( t ) {
223
+ test . cb . serial ( 'saves with a named key' , function ( t ) {
224
224
entity . testNamedKey ( t . end ) ;
225
225
} ) ;
226
226
227
- test . cb ( 'saves a key with a parent' , function ( t ) {
227
+ test . cb . serial ( 'saves a key with a parent' , function ( t ) {
228
228
entity . testKeyWithParent ( t . end ) ;
229
229
} ) ;
230
230
231
- test . cb ( 'saves a key with multiple parents' , function ( t ) {
231
+ test . cb . serial ( 'saves a key with multiple parents' , function ( t ) {
232
232
entity . testKeyWithMultiLevelParent ( t . end ) ;
233
233
} ) ;
234
234
235
- test . cb ( 'saves an entity with a parent' , function ( t ) {
235
+ test . cb . serial ( 'saves an entity with a parent' , function ( t ) {
236
236
entity . testEntityWithParent ( t . end ) ;
237
237
} ) ;
238
238
239
- test . cb ( 'saves an entity with properties' , function ( t ) {
239
+ test . cb . serial ( 'saves an entity with properties' , function ( t ) {
240
240
entity . testProperties ( t . end ) ;
241
241
} ) ;
242
242
243
- test . cb ( 'saves an entity with arrays' , function ( t ) {
243
+ test . cb . serial ( 'saves an entity with arrays' , function ( t ) {
244
244
entity . testArrayValue ( t . end ) ;
245
245
} ) ;
246
246
247
- test . cb ( 'saves a basic entity' , function ( t ) {
247
+ test . cb . serial ( 'saves a basic entity' , function ( t ) {
248
248
entity . testBasicEntity ( t . end ) ;
249
249
} ) ;
250
250
251
- test . cb ( 'saves with an upsert' , function ( t ) {
251
+ test . cb . serial ( 'saves with an upsert' , function ( t ) {
252
252
entity . testUpsert ( t . end ) ;
253
253
} ) ;
254
254
255
- test . cb ( 'saves with an insert' , function ( t ) {
255
+ test . cb . serial ( 'saves with an insert' , function ( t ) {
256
256
entity . testInsert ( t . end ) ;
257
257
} ) ;
258
258
259
- test . cb ( 'performs a lookup' , function ( t ) {
259
+ test . cb . serial ( 'performs a lookup' , function ( t ) {
260
260
entity . testLookup ( t . end ) ;
261
261
} ) ;
262
262
263
- test . cb ( 'saves with an update' , function ( t ) {
263
+ test . cb . serial ( 'saves with an update' , function ( t ) {
264
264
entity . testUpdate ( t . end ) ;
265
265
} ) ;
266
266
267
- test . cb ( 'deletes an entity' , function ( t ) {
267
+ test . cb . serial ( 'deletes an entity' , function ( t ) {
268
268
entity . testDelete ( t . end ) ;
269
269
} ) ;
270
270
271
- test . cb ( 'performs a batch upsert' , function ( t ) {
271
+ test . cb . serial ( 'performs a batch upsert' , function ( t ) {
272
272
entity . testBatchUpsert ( t . end ) ;
273
273
} ) ;
274
274
275
- test . cb ( 'performs a batch lookup' , function ( t ) {
275
+ test . cb . serial ( 'performs a batch lookup' , function ( t ) {
276
276
entity . testBatchLookup ( t . end ) ;
277
277
} ) ;
278
278
279
- test . cb ( 'performs a batch delete' , function ( t ) {
279
+ test . cb . serial ( 'performs a batch delete' , function ( t ) {
280
280
entity . testBatchDelete ( t . end ) ;
281
281
} ) ;
0 commit comments