We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39868e1 commit aabb7abCopy full SHA for aabb7ab
1 file changed
test/unit/factories/maintenance-worker-factory.spec.ts
@@ -0,0 +1,10 @@
1
+import { expect } from 'chai'
2
+
3
+import { MaintenanceWorker } from '../../../src/app/maintenance-worker'
4
+import { maintenanceWorkerFactory } from '../../../src/factories/maintenance-worker-factory'
5
6
+describe('maintenanceWorkerFactory', () => {
7
+ it('returns a MaintenanceWorker', () => {
8
+ expect(maintenanceWorkerFactory()).to.be.an.instanceOf(MaintenanceWorker)
9
+ })
10
+})
0 commit comments