We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 724ccf0 commit 24d43a0Copy full SHA for 24d43a0
tests/unit/Modules/Bulk.test.ts
@@ -86,6 +86,12 @@ describe('Bulk Module', () => {
86
assert.fieldEquals('BulkSlice', sliceId, 'hash', hash);
87
assert.fieldEquals('BulkSlice', sliceId, 'bulk', bulkId);
88
assert.fieldEquals('BulkSlice', sliceId, 'index', '0');
89
+
90
+ // Verify no dataset orders are created
91
+ let loadedSlice = BulkSlice.load(sliceId);
92
+ assert.assertTrue(loadedSlice != null);
93
+ assert.i32Equals(loadedSlice!.datasetOrders.length, 0);
94
+ assert.i32Equals(loadedSlice!.datasets.length, 0);
95
});
96
97
test('Should create BulkSlice entity from JSON content with a dataset order', () => {
0 commit comments