add failing spec
This commit is contained in:
parent
7971ce0dd9
commit
3aab713d24
1 changed files with 7 additions and 0 deletions
|
@ -570,6 +570,13 @@ describe('protocol module', function () {
|
|||
})
|
||||
|
||||
describe('protocol.isProtocolHandled', function () {
|
||||
it('returns true for about:', function (done) {
|
||||
protocol.isProtocolHandled('about', function (result) {
|
||||
assert.equal(result, true)
|
||||
done()
|
||||
})
|
||||
})
|
||||
|
||||
it('returns true for file:', function (done) {
|
||||
protocol.isProtocolHandled('file', function (result) {
|
||||
assert.equal(result, true)
|
||||
|
|
Loading…
Reference in a new issue