Coder Social home page Coder Social logo

Comments (10)

ronco avatar ronco commented on August 16, 2024

👍

from ember-test-helpers.

blimmer avatar blimmer commented on August 16, 2024

I definitely agree with this. It seems a bit backwards that the store is available in a unit test, but not in an integration: true test.

from ember-test-helpers.

pgasiorowski avatar pgasiorowski commented on August 16, 2024

This seems to be possible as of 0.5

moduleForComponent('my-comp', {
  integration: true,
  beforeEach: function() {
    this.store = this.registry.lookup('service:store');
  }
}

from ember-test-helpers.

elwayman02 avatar elwayman02 commented on August 16, 2024

The point is that this shouldn't be necessary, though. It should already be there, @WooDzu

from ember-test-helpers.

ef4 avatar ef4 commented on August 16, 2024

We have service injection support now. The store is just a service, and I don't think it needs to be special-cased. The following already works in the current release:

moduleForComponent('my-comp', {
  integration: true,
  beforeEach: function() {
    this.inject.service('store');
    this.get('store').createRecord(...);
  }
}

from ember-test-helpers.

elwayman02 avatar elwayman02 commented on August 16, 2024

@ef4 what if the service is already injected in the component itself rather than via initializer? That doesn't seem to be working...

from ember-test-helpers.

ef4 avatar ef4 commented on August 16, 2024

I recommend against doing injection in an initializer. Declare in each component exactly which services should be injected, and tests will all work automatically.

If you really need something in an initializer, you'll need to call it yourself. Initializers don't run before integration tests.

from ember-test-helpers.

elwayman02 avatar elwayman02 commented on August 16, 2024

Right, hence my question, relevant to #109 @ef4...

from ember-test-helpers.

ef4 avatar ef4 commented on August 16, 2024

Sorry, I misread your earlier comment.

Please provide a reproduction in #109. I have lots of examples of components that do someService: Ember.inject.service() that are working fine in integration tests, so we need more to go on to figure out why yours don't.

from ember-test-helpers.

Turbo87 avatar Turbo87 commented on August 16, 2024

closing due to inactivity

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.