mirror of
https://github.com/strapi/strapi.git
synced 2025-07-19 15:06:11 +00:00
18 lines
468 B
Handlebars
18 lines
468 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}}']);
|
|
});
|
|
});
|