GithubHelp home page GithubHelp logo

Comments (5)

mitchlloyd avatar mitchlloyd commented on August 16, 2024

I was trying to put together a test for a component that makes an ajax call and found it very awkward. Being able to use these test helpers would be helpful.

from ember-test-helpers.

praxxis avatar praxxis commented on August 16, 2024

This worked out of the box for me in 1.12, but in one of the point release 1.13's it broke, due to this change. Basically, view lookups stopped being a just-in-time check of a global shared by all "applications" (I put that in quotes because technically there's no application in the test helpers, but views do get registered into that global). That change meant that the application built by startApp no longer had knowledge of the component views created in the test. When an event was invoked in the component, by clicking or filling in or whatever, the application event dispatcher couldn't find the view with the action corresponding to the event.

I fixed this by creating a test function that recreates the integration test event dispatcher with a link to the applications container, so view lookups worked again:

export default function (context, app) {
  run(app, () => {
    // destroy the old dispatcher...
    context.dispatcher.destroy();

    // ... then replace it with a dispatcher that knows about the application container
    context.dispatcher = EventDispatcher.create({
      container: app.container
    });

    context.dispatcher.setup({}, '#ember-testing');
  });
}

In my tests I'd use it as such:

  beforeEach() {
    App = startApp();

    linkAppDispatcher(this, App);
  },

from ember-test-helpers.

rwjblue avatar rwjblue commented on August 16, 2024

@praxxis - Thank you for the detailed explanation and workaround.

from ember-test-helpers.

praxxis avatar praxxis commented on August 16, 2024

Huzzah, I updated a bunch of dependencies (including going to Ember 2.0) and no longer need to re-link the container with the above workaround. I assume it was #90 that fixed it

from ember-test-helpers.

rwjblue avatar rwjblue commented on August 16, 2024

FWIW, these helpers are available via ember-native-dom-helpers, and I plan to submit an RFC to expose them directly from ember-test-helpers in the near future (as soon as the changes from emberjs/rfcs#232 are totally finished).

I'm going to close this for now (since it is possible with that addon)...

from ember-test-helpers.

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.