forked from boranton/testcafe-workshop
8 lines
133 B
JavaScript
8 lines
133 B
JavaScript
import Controller from './controller'
|
|
|
|
describe('controller', () => {
|
|
it('exists', () => {
|
|
expect(Controller).to.exist
|
|
})
|
|
})
|