Skip to content

Commit

Permalink
Failing test for not recognizing blob: urls as absolute
Browse files Browse the repository at this point in the history
  • Loading branch information
zlamma committed Jun 20, 2016
1 parent 063ced9 commit ac87a13
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/resolve/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ describe( 'rcu.resolve()', function () {
base: 'components/foo.html',
path: '../bar.html',
expected: 'bar.html'
},

{
base: '',
path: 'blob:https://site.example/deadbeef-dead-beef-dead-deaddeadbeef',
expected: 'blob:https://site.example/deadbeef-dead-beef-dead-deaddeadbeef'
}
];

Expand Down

0 comments on commit ac87a13

Please sign in to comment.