Commit 32831122 authored by Sean Hammond's avatar Sean Hammond

Remove a duplicate test

parent 82ade33e
...@@ -43,17 +43,6 @@ describe('documentTitle', function() { ...@@ -43,17 +43,6 @@ describe('documentTitle', function() {
assert(title === 'on “title”'); assert(title === 'on “title”');
}); });
it('returns the title linked if the document has title and uri', function() {
var title = documentTitleFilterProvider()({
title: 'title',
uri: 'http://example.com/example.html'
});
assert(title === 'on &ldquo;<a target="_blank" ' +
'href="http://example.com/example.html">' +
'title</a>&rdquo;');
});
it('returns an empty string if the document has no title', function() { it('returns an empty string if the document has no title', function() {
var title = documentTitleFilterProvider()({ var title = documentTitleFilterProvider()({
uri: 'http://example.com/example.html' uri: 'http://example.com/example.html'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment