Joh/rainy-mollusk (#200976)

* snippet completions should also check with the completion model

this will allow to return "more" from the snippet completion item provider and rely on the completions model to do some filtering

* when debugging tests allow to use console.log

* fix https://github.com/microsoft/vscode/issues/191070
This commit is contained in:
Johannes Rieken
2023-12-15 16:07:56 +01:00
committed by GitHub
parent 74bf30a8ec
commit a5698e8857
3 changed files with 410 additions and 167 deletions

View File

@@ -278,7 +278,7 @@ function loadTests(opts) {
teardown(() => {
// should not have unexpected output
if (_testsWithUnexpectedOutput) {
if (_testsWithUnexpectedOutput && !opts.dev) {
assert.ok(false, 'Error: Unexpected console output in test run. Please ensure no console.[log|error|info|warn] usage in tests or runtime errors.');
}