mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-01 00:08:27 +01:00
12 lines
248 B
JavaScript
12 lines
248 B
JavaScript
|
import { Map as $MAp } from 'immutable';
|
||
|
|
||
|
export const createFakeStore = (permissions) => {
|
||
|
return {
|
||
|
getState: () => ({
|
||
|
user:
|
||
|
new $MAp({
|
||
|
permissions
|
||
|
})
|
||
|
}),
|
||
|
}
|
||
|
}
|