• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

bordoley / reactive-js / 14278092116

05 Apr 2025 03:32AM UTC coverage: 88.48% (-6.7%) from 95.167%
14278092116

push

github

bordoley
tests

929 of 1256 branches covered (73.96%)

Branch coverage included in aggregate %.

2 of 2 new or added lines in 2 files covered. (100.0%)

229 existing lines in 27 files now uncovered.

6037 of 6617 relevant lines covered (91.23%)

421.48 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

87.5
/src/computations/Streamable/__private__/Streamable.create.ts
1
import { createInstanceFactory } from "../../../__internal__/mixins.js";
2✔
2
import {
2✔
3
  ObservableLike,
4
  PureObservableLike,
5
  StreamableLike_stream,
6
} from "../../../computations.js";
7
import { Function1 } from "../../../functions.js";
8

9
import type * as Streamable from "../../Streamable.js";
10
import StreamMixin from "../../__mixins__/StreamMixin.js";
2✔
11

12
const Streamable_create: Streamable.Signature["create"] = /*@__PURE__*/ (<
2✔
13
  TReq,
14
  T,
15
>() => {
16
  const Stream_create = createInstanceFactory(StreamMixin<TReq, T>());
2✔
17

18
  return (op: Function1<PureObservableLike<TReq>, ObservableLike<T>>) => ({
2✔
19
    [StreamableLike_stream]: (scheduler, options) =>
UNCOV
20
      Stream_create(op, scheduler, options),
×
21
  });
22
})();
23

24
export default Streamable_create;
2✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc