Я новичок Jasmine-jQuery. Я попытался использовать HTML-документ, но тест не прошел.С Jasmine-jQuery Я попытался сменить HTML-файл, но он не работает
fixture.html:
<html>
<body>
<p id="0">
</p>
</body>
</html>
fake_code_for_question_spec.coffee:
describe "FakeCodeForQuestion", ->
describe "with HTML fixture", ->
beforeEach ->
loadFixtures "fixture.html" ### Load Fixture
@obj = new FakeCodeForQuestion
describe "#addText", ->
beforeEach ->
@obj.addTextToParagraph0() ### Change DOM
it "should add text", ->
expect($('p#0')).toHaveText "text" ### Get Changed DOM
fake_code_for_question.coffee:
root = exports ? this
class root.FakeCodeForQuestion
addTextToParagraph0: ->
$('p0').text "text"
Жасмин Результат:
Expected '<p id="0"> </p>' to have text 'text'.
Спасибо за вашу доброту.
О, спасибо огромное! – weed