@revoloo/cypress6
Version:
Cypress.io end to end testing tool
22 lines (16 loc) • 589 B
JavaScript
require('../spec_helper')
const path_helpers = require(`${root}lib/util/path_helpers`)
describe('lib/util/path_helpers', () => {
context('checkIfResolveChangedRootFolder', () => {
const check = path_helpers.checkIfResolveChangedRootFolder
it('ignores non-absolute paths', () => {
expect(check('foo/index.js', 'foo')).to.be.false
})
it('handles paths that do not switch', () => {
expect(check('/foo/index.js', '/foo')).to.be.false
})
it('detects path switch', () => {
expect(check('/private/foo/index.js', '/foo')).to.be.true
})
})
})