mirror of
https://github.com/strapi/strapi.git
synced 2025-09-03 22:03:08 +00:00

* chore: lint test scripts * chore: clone playwright tests * chore: clean up test runner * feat: add jest test runner with concurrency * chore: documentation * chore: docs * chore: fix prettier * chore: lint * chore: remove log * chore: remove console.logs * fix: ensure enough test apps are available * chore: add log for yalc * chore: fix logging * chore: tests to todos
17 lines
570 B
JavaScript
17 lines
570 B
JavaScript
const { CUSTOM_TRANSFER_TOKEN_ACCESS_KEY } = require('./app-template/template/src/constants');
|
|
|
|
const ALLOWED_CONTENT_TYPES = ['admin::user', 'admin::role', 'admin::permission'];
|
|
|
|
// TODO: we should start using @strapi.io addresses to have the chance one day to
|
|
// actually receive and check the emails; also: it is not nice to spam other peoples
|
|
// websites
|
|
const ADMIN_EMAIL_ADDRESS = 'test@testing.com';
|
|
const ADMIN_PASSWORD = 'Testing123!';
|
|
|
|
module.exports = {
|
|
ADMIN_EMAIL_ADDRESS,
|
|
ADMIN_PASSWORD,
|
|
ALLOWED_CONTENT_TYPES,
|
|
CUSTOM_TRANSFER_TOKEN_ACCESS_KEY,
|
|
};
|