mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-21 15:49:19 -05:00
10 lines
281 B
TypeScript
10 lines
281 B
TypeScript
const { expect } = require('chai')
|
|
const preprocessor = require('../../dist/index')
|
|
|
|
describe('tyepscript ./dist output', () => {
|
|
it('builds dist correctly', () => {
|
|
expect(preprocessor).to.be.a('function')
|
|
expect(preprocessor).to.have.property('defaultOptions')
|
|
})
|
|
})
|