We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0fefcc commit e9a5257Copy full SHA for e9a5257
src/pat/inject/inject.test.js
@@ -344,7 +344,7 @@ describe("pat-inject", function () {
344
);
345
});
346
347
- it("5.4 - Element without link attribute", function () {
+ it("5.4 - Anchor element without href attribute", function () {
348
var spy_rebaseURL = jest.spyOn(pattern, "_rebaseURL");
349
expect(pattern._rebaseHTML("base", "<a>This is a test</a>")).toBe(
350
"<a>This is a test</a>"
@@ -354,7 +354,7 @@ describe("pat-inject", function () {
354
spy_rebaseURL.mockRestore();
355
356
357
- it("5.5 - Element with link attribute", function () {
+ it("5.5 - Anchor element with href attribute", function () {
358
expect(
359
pattern._rebaseHTML(
360
"http://example.com/test/",
0 commit comments