Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
it('should group tests based on their extension', () => {
const out = folderStructure(options)
const { tests } = out.find(({ title }) => title === 'File4') || {}
expect(tests['cypress.spec']).toEqual(expect.any(String))
expect(tests.spec).toEqual(expect.any(String))
})