closes #8213 closes #7696 Co-authored-by: Hank Grabowski <hankgrabowski@gmail.com> Co-authored-by: Thorsten Claus <thorstenclaus@web.de>
15 lines
440 B
JavaScript
15 lines
440 B
JavaScript
describe("app.pages.GettingStarted", function() {
|
|
beforeEach(function() {
|
|
spec.loadFixture("getting_started");
|
|
app.aspects = new app.collections.Aspects([factory.aspect()]);
|
|
|
|
this.view = new app.pages.GettingStarted({
|
|
inviter: factory.person()
|
|
});
|
|
});
|
|
|
|
it("renders aspect membership dropdown", function() {
|
|
this.view.render();
|
|
expect($("ul.dropdown-menu.aspect-membership").length).toEqual(1);
|
|
});
|
|
});
|