Skip to content

Commit 3d37cac

Browse files
test(jco): enable test for lowered stream<string>
1 parent 12066e3 commit 3d37cac

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

crates/test-components/wit/all.wit

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,6 @@ interface use-stream-async {
231231
read-stream-values-fixed-list-u32: async func(s: stream<list<list<u32, 5>>>) -> list<list<list<u32, 5>>>;
232232
read-stream-values-list-record: async func(s: stream<list<example-record>>) -> list<list<example-record>>;
233233

234-
// NOTE: the check here will be whether the resources are disposed inside the component properly
235234
read-stream-values-example-resource-own: async func(s: stream<example-resource>);
236235

237236
read-stream-values-example-resource-own-attr: async func(s: stream<example-resource>) -> list<u32>;

packages/jco/test/p3/stream-lowers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ suite("stream<T> lowers", () => {
439439
assert.deepEqual(returnedVals, [2, 1, 0]);
440440
});
441441

442-
test.only("stream<string>", async () => {
442+
test.concurrent("stream<string>", async () => {
443443
assert.instanceOf(instance["jco:test-components/use-stream-async"].readStreamValuesStreamString, AsyncFunction);
444444

445445
let vals = [

0 commit comments

Comments
 (0)