mirror of
https://github.com/Cameri/nostream.git
synced 2025-06-08 22:19:11 +02:00
11 lines
259 B
TypeScript
11 lines
259 B
TypeScript
import { expect } from 'chai'
|
|
|
|
import { App } from '../../../src/app/app'
|
|
import { appFactory } from '../../../src/factories/app-factory'
|
|
|
|
describe('appFactory', () => {
|
|
it('returns an App', () => {
|
|
expect(appFactory()).to.be.an.instanceOf(App)
|
|
})
|
|
})
|