Skip to content

Commit 05f10c7

Browse files
committed
linting
1 parent 5306599 commit 05f10c7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/views/live-watch/live-watch.test.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -199,12 +199,12 @@ describe('LiveWatchTreeDataProvider', () => {
199199
await (liveWatchTreeDataProvider as any).handleCopyCommand(node);
200200
expect(vscode.env.clipboard.writeText).toHaveBeenCalledWith('node-to-copy');
201201
});
202-
202+
203203
it('copies evaluateName of children to clipboard when present', async () => {
204-
const child = makeNode('childName', {
205-
result: '42',
206-
variablesReference: 0,
207-
evaluateName: 'parent.childName'
204+
const child = makeNode('childName', {
205+
result: '42',
206+
variablesReference: 0,
207+
evaluateName: 'parent.childName'
208208
}, 2);
209209
(liveWatchTreeDataProvider as any).roots = [child];
210210
await (liveWatchTreeDataProvider as any).handleCopyCommand(child);

0 commit comments

Comments
 (0)