Fixing tests

stable
Alejandro Alonso 2015-05-05 15:14:59 +02:00 committed by Juanfran
parent 710f621602
commit 7224a1f688
2 changed files with 6 additions and 7 deletions

View File

@ -52,10 +52,6 @@ describe "homeDirective", () ->
project: 1 project: 1
ref: 1 ref: 1
_name: "userstories" _name: "userstories"
subject: "Testing js subject"
status_extra_info: {
color: "#CCCCCC"
}
assigned_to_extra_info: { assigned_to_extra_info: {
photo: "http://jstesting.taiga.io/photo" photo: "http://jstesting.taiga.io/photo"
full_name_display: "Taiga testing js" full_name_display: "Taiga testing js"
@ -72,8 +68,10 @@ describe "homeDirective", () ->
mockTranslate.instant mockTranslate.instant
.withArgs("COMMON.USER_STORY") .withArgs("COMMON.USER_STORY")
.returns("COMMON.USER_STORY") .returns("User story translated")
elm = createDirective() elm = createDirective()
scope.$apply() scope.$apply()
expect(elm.find('.duty-status').css("color")).to.be.equal('rgb(204, 204, 204)') expect(elm.isolateScope().vm.getDutyType()).to.be.equal("User story translated")
expect(elm.isolateScope().vm.getUrl()).to.be.equal("http://jstesting.taiga.io")
expect(elm.isolateScope().vm.getProjectName()).to.be.equal("testing js project")

View File

@ -57,4 +57,5 @@ describe "homeDirective", () ->
it "home directive content", () -> it "home directive content", () ->
elm = createDirective() elm = createDirective()
scope.$apply() scope.$apply()
expect(elm.find('.duty-single')).to.have.length(6) expect(elm.isolateScope().vm.assignedTo.size).to.be.equal(3)
expect(elm.isolateScope().vm.watching.size).to.be.equal(3)