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