mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 00:11:49 +03:00
21b30c94f4
- The current huge test utilities file is really hard to reason about - It is so big we have no idea what's in it anymore - It's also full of terrible code we want to rework - Splitting it down into smaller pieces makes it easier to see which are the worst bits!
14 lines
652 B
JavaScript
14 lines
652 B
JavaScript
const DataGenerator = require('./data-generator');
|
|
|
|
module.exports = {
|
|
internal: {context: {internal: true}},
|
|
external: {context: {external: true}},
|
|
owner: {context: {user: DataGenerator.Content.users[0].id}},
|
|
admin: {context: {user: DataGenerator.Content.users[1].id}},
|
|
editor: {context: {user: DataGenerator.Content.users[2].id}},
|
|
author: {context: {user: DataGenerator.Content.users[3].id}},
|
|
contributor: {context: {user: DataGenerator.Content.users[7].id}},
|
|
admin_api_key: {context: {api_key: DataGenerator.Content.api_keys[0].id}},
|
|
content_api_key: {context: {api_key: DataGenerator.Content.api_keys[1].id}}
|
|
};
|