So i have the following test that passes but gets the warning
DEPRECIATION: Using the default Container is no longer supported. [default Container#lookup]
describe "Facet selector component", ->
before ->
component = App.FacetSelectorComponent.create(
content: []
name: 'brands'
)
Ember.run ->
component.appendTo('body')
@component = component
it "should display the name", ->
@component.$().should.contain('brands')
Can anyone tell me how to update this test to remove the warning ?
thanks a lot Rick