fix(tests): update initialization test to expect service to be truthy

This commit is contained in:
Lorenz Hilpert
2025-04-25 20:00:10 +02:00
parent e1ce520711
commit 809a6e38b3

View File

@@ -40,7 +40,7 @@ describe('ReturnProcessStore', () => {
describe('Initialization', () => {
it('should create an instance of ReturnProcessStore', () => {
const spectator = createService();
expect(spectator.service).toBeFalsy();
expect(spectator.service).toBeTruthy();
});
it('should have a nextId computed property', () => {