@revoloo/cypress6
Version:
Cypress.io end to end testing tool
19 lines (14 loc) • 565 B
JavaScript
require('../spec_helper')
const origin = require(`${root}lib/util/origin`)
describe('lib/util/origin', () => {
beforeEach(function () {
this.expects = (url, expected) => {
expect(origin(url)).to.eq(expected)
}
})
it('strips everything but the remote origin', function () {
this.expects('http://localhost:9999/foo/bar?baz=quux#/index.html', 'http://localhost:9999')
this.expects('https://www.google.com/', 'https://www.google.com')
return this.expects('https://app.foobar.co.uk:1234/a=b', 'https://app.foobar.co.uk:1234')
})
})