This commit is contained in:
Connor Peet
2021-04-09 17:46:21 -07:00
parent 6229e7a57f
commit 6b666279b8
18 changed files with 515 additions and 61 deletions

View File

@@ -5,6 +5,7 @@
import { mapFind } from 'vs/base/common/arrays';
import { disposableTimeout } from 'vs/base/common/async';
import { VSBuffer } from 'vs/base/common/buffer';
import { CancellationToken, CancellationTokenSource } from 'vs/base/common/cancellation';
import { Emitter } from 'vs/base/common/event';
import { once } from 'vs/base/common/functional';
@@ -274,8 +275,8 @@ export class ExtHostTesting implements ExtHostTestingShape {
try {
await provider.runTests({
appendOutput() {
// todo
appendOutput: message => {
this.proxy.$appendOutputToRun(req.runId, VSBuffer.fromString(message));
},
appendMessage: (test, message) => {
if (!isExcluded(test)) {