Giter VIP home page Giter VIP logo

Comments (6)

adambeynon avatar adambeynon commented on June 9, 2024

Hi Jared. When things run async in javascript, we can't have a top level wrapper that will catch issues in all browsers. There is also an instance async method which you can use which will catch any errors:

describe "some async magic" do
  async "it might raise an error" do
    something_happens_later do
      async { raise "yo" }
    end
  end
end

Wrapping things inside that async block will make things work as they are meant to.

from opal-jquery.

jaredcwhite avatar jaredcwhite commented on June 9, 2024

Thanks for the helpful tip...doesn't really explain my problem however because I didn't write any of the code that's not working right, particularly the strange set_timeout behavior. :)

from opal-jquery.

adambeynon avatar adambeynon commented on June 9, 2024

The timeout behaviour is intentional. Maybe it should be renamed though to avoid confusion withsetTimeout

from opal-jquery.

jaredcwhite avatar jaredcwhite commented on June 9, 2024

Thanks Adam, that put me on the right path. I renamed set_timeout to delay (since set_timeout was actually just an alias of delay) and changed the values. I also fixed the other issue you mentioned by putting async { } inside the delay blocks instead of wrapping them.

from opal-jquery.

adambeynon avatar adambeynon commented on June 9, 2024

Just to follow up, the reason that method deals with seconds instead of milliseconds is that it feels a bit more consistent with other ruby/rails libs:

# ruby corelib
sleep(1)    # => 1 second

# rails monkey patching
12.seconds.to_i   # => 12

from opal-jquery.

jaredcwhite avatar jaredcwhite commented on June 9, 2024

Yeah, I think it just threw me seeing "set_timeout" since that has such a specific usage in Javascript. And apparently I wasn't the only one confused since the tests weren't working. Less confusing to call it delay. :) Thanks again for the tips.

from opal-jquery.

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.