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