mirror of
https://github.com/strapi/strapi.git
synced 2025-07-28 03:20:17 +00:00
18 lines
482 B
Handlebars
18 lines
482 B
Handlebars
import { fixtures } from '../../../../../../../admin-test-utils';
|
|
import { select{{ name }}Domain } from '../selectors';
|
|
|
|
describe('select{{ name }}Domain', () => {
|
|
let store;
|
|
|
|
beforeEach(() => {
|
|
store = { ...fixtures.store.state, '{{ plugin }}_{{ camelCase name }}': {} };
|
|
});
|
|
|
|
it('expects to have unit tests specified', () => {
|
|
const actual = select{{ name }}Domain(store);
|
|
|
|
// TBC
|
|
expect(actual).toEqual(store['{{ plugin }}_{{ camelCase name }}']);
|
|
});
|
|
});
|