summaryrefslogtreecommitdiff
path: root/cli/tests/testdata
diff options
context:
space:
mode:
authorLuca Casonato <hello@lcas.dev>2022-09-28 15:03:56 +0200
committerGitHub <noreply@github.com>2022-09-28 15:03:56 +0200
commit70bc0eb72b01249b4c1ccc92b51bf5c442b3edc9 (patch)
treedbf7839f3db529e7d156426343a8a03963436967 /cli/tests/testdata
parentfa9e7aab6d49f241a4eb30cc0e261f8ceb64af2f (diff)
feat(unstable): Deno.setRaw -> Deno.stdin.setRaw (#15797)
Co-authored-by: Bartek IwaƄczuk <biwanczuk@gmail.com>
Diffstat (limited to 'cli/tests/testdata')
-rw-r--r--cli/tests/testdata/run/unstable_worker.ts.out2
-rw-r--r--cli/tests/testdata/workers/worker_unstable.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/cli/tests/testdata/run/unstable_worker.ts.out b/cli/tests/testdata/run/unstable_worker.ts.out
index b40bdfeb8..182dc58a4 100644
--- a/cli/tests/testdata/run/unstable_worker.ts.out
+++ b/cli/tests/testdata/run/unstable_worker.ts.out
@@ -1,2 +1,2 @@
[Function: query]
-[Function: setRaw]
+[Function: consoleSize]
diff --git a/cli/tests/testdata/workers/worker_unstable.ts b/cli/tests/testdata/workers/worker_unstable.ts
index 5d14e228b..219f34e7b 100644
--- a/cli/tests/testdata/workers/worker_unstable.ts
+++ b/cli/tests/testdata/workers/worker_unstable.ts
@@ -1,5 +1,5 @@
console.log(Deno.permissions.query);
-console.log(Deno.setRaw);
+console.log(Deno.consoleSize);
self.onmessage = () => {
self.close();
};