Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

notebook variable data source tests #203753

Merged
merged 2 commits into from
Jan 30, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
one more assert
  • Loading branch information
amunger committed Jan 29, 2024
commit cf7b98a911e4904075b176862e7eec7fe5488aef
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ suite('NotebookVariableDataSource', () => {

assert(variables.length > 1, 'We should have results for groups of children');
assert(!provideVariablesCalled, 'provideVariables should not be called');
assert.equal(variables[0].extHostId, parent.extHostId, 'ExtHostId should match the parent since we will use it to get the real children');
});

test('Cancel while enumerating through children', async () => {
Expand Down
Loading