Skip to content

Commit 29bfef5

Browse files
authored
Merge branch 'main' into refactor/callback-routes-conditional-registration
2 parents 54057c5 + 40abf66 commit 29bfef5

2 files changed

Lines changed: 15 additions & 0 deletions

File tree

.changeset/tall-mangos-hear.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"nostream": patch
3+
---
4+
5+
Add unit tests for maintenance service factory instantiation and dependency wiring.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)