mirror of
https://codeberg.org/keyoxide/doipjs.git
synced 2024-12-22 22:49:28 -07:00
Replace URL with URI
This commit is contained in:
parent
012ef682e6
commit
8a7f60d24b
1 changed files with 3 additions and 3 deletions
|
@ -40,9 +40,9 @@ doipjs.serviceprovidersList.forEach((sp, i) => {
|
|||
it('should have a RegExp instance named "reURI"', () => {
|
||||
expect(doipjs.serviceproviders[sp].reURI).to.be.instanceof(RegExp)
|
||||
})
|
||||
it('should have a function named "processURL" (2 arguments)', () => {
|
||||
expect(doipjs.serviceproviders[sp].processURL).to.be.a('function')
|
||||
expect(doipjs.serviceproviders[sp].processURL).to.have.length(2)
|
||||
it('should have a function named "processURI" (2 arguments)', () => {
|
||||
expect(doipjs.serviceproviders[sp].processURI).to.be.a('function')
|
||||
expect(doipjs.serviceproviders[sp].processURI).to.have.length(2)
|
||||
})
|
||||
it('should have an array named "tests"', () => {
|
||||
expect(doipjs.serviceproviders[sp].tests).to.be.instanceof(Array)
|
||||
|
|
Loading…
Reference in a new issue