fix(core): update

This commit is contained in:
2024-03-03 10:42:14 +01:00
parent 1f57f1397c
commit cab2d8aa2e
5 changed files with 59 additions and 29 deletions

View File

@@ -96,8 +96,8 @@ tap.test('should allow VirtualStreams', async () => {
newRequestingVS.sendData(Buffer.from('hello'));
const data = await generatedRequestingVS.fetchData();
const decodedData = data.toString();
expect(data.toString()).toEqual('hello');
const decodedData = new TextDecoder().decode(data);
expect(decodedData).toEqual('hello');
});
tap.test('should end the server', async (toolsArg) => {