insomnia/packages/insomnia-app/app/common/__fixtures__/nestedfolders.js

57 lines
857 B
JavaScript
Raw Normal View History

2016-11-10 05:56:23 +00:00
import * as models from '../../models';
2016-09-21 00:03:26 +00:00
export const data = {
2018-06-25 17:42:50 +00:00
[models.workspace.type]: [
{
_id: 'wrk_1',
name: 'Wrk 1',
},
2018-06-25 17:42:50 +00:00
],
2016-09-08 06:54:35 +00:00
2018-06-25 17:42:50 +00:00
[models.requestGroup.type]: [
{
_id: 'fld_1',
parentId: 'wrk_1',
name: 'Fld 1',
2018-06-25 17:42:50 +00:00
},
{
_id: 'fld_2',
parentId: 'wrk_1',
name: 'Fld 2',
2018-06-25 17:42:50 +00:00
},
{
_id: 'fld_3',
parentId: 'fld_1',
name: 'Fld 3',
},
2018-06-25 17:42:50 +00:00
],
2016-09-08 06:54:35 +00:00
2018-06-25 17:42:50 +00:00
[models.request.type]: [
{
_id: 'req_1',
parentId: 'fld_1',
name: 'Req 1',
2018-06-25 17:42:50 +00:00
},
{
_id: 'req_2',
parentId: 'fld_1',
name: 'Req 2',
2018-06-25 17:42:50 +00:00
},
{
_id: 'req_3',
parentId: 'wrk_1',
name: 'Req 3',
2018-06-25 17:42:50 +00:00
},
{
_id: 'req_4',
parentId: 'fld_3',
name: 'Req 4',
2018-06-25 17:42:50 +00:00
},
{
_id: 'req_5',
parentId: 'wrk_1',
name: 'Req 5',
},
],
};