diff options
Diffstat (limited to 'cli/tests/node_compat/test/parallel/test-stream2-decode-partial.js')
-rw-r--r-- | cli/tests/node_compat/test/parallel/test-stream2-decode-partial.js | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/cli/tests/node_compat/test/parallel/test-stream2-decode-partial.js b/cli/tests/node_compat/test/parallel/test-stream2-decode-partial.js deleted file mode 100644 index f3a9ec15d..000000000 --- a/cli/tests/node_compat/test/parallel/test-stream2-decode-partial.js +++ /dev/null @@ -1,30 +0,0 @@ -// deno-fmt-ignore-file -// deno-lint-ignore-file - -// Copyright Joyent and Node contributors. All rights reserved. MIT license. -// Taken from Node 18.12.1 -// This file is automatically generated by `tools/node_compat/setup.ts`. Do not modify this file manually. - -'use strict'; -require('../common'); -const { Readable } = require('stream'); -const assert = require('assert'); - -let buf = ''; -const euro = Buffer.from([0xE2, 0x82, 0xAC]); -const cent = Buffer.from([0xC2, 0xA2]); -const source = Buffer.concat([euro, cent]); - -const readable = Readable({ encoding: 'utf8' }); -readable.push(source.slice(0, 2)); -readable.push(source.slice(2, 4)); -readable.push(source.slice(4, 6)); -readable.push(null); - -readable.on('data', function(data) { - buf += data; -}); - -process.on('exit', function() { - assert.strictEqual(buf, '€¢'); -}); |