Skip to content

Commit a568823

Browse files
committed
test: rename
1 parent 4a84bdd commit a568823

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/notebooks/deepnote/deepnoteTreeDataProvider.unit.test.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,12 @@ suite('DeepnoteTreeDataProvider', () => {
8585
assert.isArray(children);
8686
});
8787

88-
test('should return array on first call without workspace', async () => {
88+
test('should not throw on first getChildren call with new provider instance', async () => {
8989
const newProvider = new DeepnoteTreeDataProvider();
9090

9191
// First call - just verify it returns an array and doesn't throw
9292
const children = await newProvider.getChildren();
9393
assert.isArray(children);
94-
// In test environment without workspace, may return empty or loading based on timing
9594

9695
if (newProvider && typeof newProvider.dispose === 'function') {
9796
newProvider.dispose();

0 commit comments

Comments
 (0)