You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
let store: CompanyStore;
beforeEach(async () => {
store = new CompanyStore();
});
it('config', () => {
expect(store.config.name).toEqual('company'); <-- This test case fails
expect(store.config.idKey).toEqual('businessId');
});
});
`
Please provide a link to a minimal reproduction of the bug
Is this a regression?
No
Description
name -property not properly set.
`
@StoreConfig({name: 'company', idKey: 'businessId'})
@Injectable({providedIn: 'root'})
export class CompanyStore extends EntityStore<CompanyState, Company> {
constructor() {
super();
}
}
`
`
describe('CompanyStore', () => {
});
`
Please provide a link to a minimal reproduction of the bug
No response
Please provide the exception or error you saw
Please provide the environment you discovered this bug in
Anything else?
No response
Do you want to create a pull request?
No
The text was updated successfully, but these errors were encountered: