⚝
One Hat Cyber Team
⚝
Your IP:
216.73.217.4
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
grafana
/
public
/
app
/
features
/
org
/
state
/
View File Name :
reducers.test.ts
import { reducerTester } from '../../../../test/core/redux/reducerTester'; import { OrganizationState, OrgRole } from '../../../types'; import { initialState, organizationLoaded, organizationReducer, userOrganizationsLoaded, setOrganizationName, } from './reducers'; describe('organizationReducer', () => { describe('when organizationLoaded is dispatched', () => { it('then state should be correct', () => { reducerTester
() .givenReducer(organizationReducer, { ...initialState }) .whenActionIsDispatched(organizationLoaded({ id: 1, name: 'An org' })) .thenStateShouldEqual({ organization: { id: 1, name: 'An org' }, userOrgs: [], }); }); }); describe('when setOrganizationName is dispatched', () => { it('then state should be correct', () => { reducerTester
() .givenReducer(organizationReducer, { ...initialState, organization: { id: 1, name: 'An org' } }) .whenActionIsDispatched(setOrganizationName('New Name')) .thenStateShouldEqual({ organization: { id: 1, name: 'New Name' }, userOrgs: [], }); }); }); describe('when userOrganizationsLoaded is dispatched', () => { it('then state should be correct', () => { reducerTester
() .givenReducer(organizationReducer, { ...initialState, organization: { id: 1, name: 'An org' }, userOrgs: [], }) .whenActionIsDispatched(userOrganizationsLoaded([{ orgId: 1, name: 'New org', role: OrgRole.Editor }])) .thenStateShouldEqual({ organization: { id: 1, name: 'An org' }, userOrgs: [{ orgId: 1, name: 'New org', role: OrgRole.Editor }], }); }); }); });