Code Monkey home page Code Monkey logo

Comments (7)

dilame avatar dilame commented on July 18, 2024 1

Yes, i understand that i need to provide TestContext in order to use TestClock, i also understand that it is not tracked at type level, but the error in runtime doesn't provide a clear understanding of whats going wrong, is it intended?

from effect.

dilame avatar dilame commented on July 18, 2024 1

not sure we have enough info at runtime to make it nice

Something like "Some of the required dependencies not found" message would be better that TypeError at runtime anyway IMHO:)

And, BTW, maybe we could depend on Clock on type-level, and substitute it with TestClock when needed?

from effect.

mikearnaldi avatar mikearnaldi commented on July 18, 2024

To use TestClock you need to provide a TestContext like:

import {Effect, TestClock, TestContext, Schedule} from "effect"

const test = Effect.gen(function* () {
    const sleeps = yield* TestClock.sleeps();
    console.log(sleeps);

}).pipe(Effect.repeat(Schedule.addDelay(Schedule.forever, () => '1 second')))

Effect.runPromise(test.pipe(Effect.provide(TestContext.TestContext)))

The reason this is not tracked at the type level is because otherwise test implementations wouldn't be composable with app code so we opted for a fiber ref

from effect.

mikearnaldi avatar mikearnaldi commented on July 18, 2024

We can try to improve the error message but not sure we have enough info at runtime to make it nice

from effect.

DScheglov avatar DScheglov commented on July 18, 2024

We can try to improve the error message but not sure we have enough info at runtime to make it nice

Is there any way to make this code fail at compile time?
Without it, dependency injection works as a dynamic service locator and will cause heavy debugging.

from effect.

mikearnaldi avatar mikearnaldi commented on July 18, 2024

We can try to improve the error message but not sure we have enough info at runtime to make it nice

Is there any way to make this code fail at compile time? Without it, dependency injection works as a dynamic service locator and will cause heavy debugging.

As explained it is like this intentionally. For typed dependencies you have Context, in this case we use a FiberRef to not have explicit types. If using the TestClock added a dependency to the type you would not be able to use it in place of production code.

from effect.

mikearnaldi avatar mikearnaldi commented on July 18, 2024

from effect.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.