GetText()在茉莉花中无法按预期工作

时间:2018-11-08 10:13:38

标签: angular unit-testing jasmine karma-jasmine

这是在有角度的应用程序中的文本:

jQuery(document).ready(function($) {
  $("a.pdf_btn").click(function(event) {
    var id = $(this).attr("data-target"); // Look for the data-target
    doc.fromHTML($(id).html(), 15, 15, {
      'width': 170,
      'elementHandlers': specialElementHandlers
    });
    doc.save("<? echo str_replace(" ", "", $_SESSION['comp_TESTING']); ?>Test<?php mt_rand(1,99);?>.pdf");
  });
});

我想使用Jasmine&karma进行测试,我的代码是:

<div class="container-fluid">
  All rights reserved. If you have questions, please contact the Application Support & Remediation.</a>
</div>

但是,它失败了。

有人可以帮忙吗?在此先感谢

Arka

0 个答案:

没有答案