We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fce4edd commit 97668a8Copy full SHA for 97668a8
playground/src/index.ts
@@ -19,6 +19,9 @@ export default {
19
async bootstrap({ strapi }: { strapi: Core.Strapi }) {
20
// Seed the database with some test data for the integration tests.
21
if (process.env.NODE_ENV === 'test') {
22
+ // Hide repeated startup messages while running tests.
23
+ strapi.config.set('server.logger.startup.enabled', false);
24
+
25
// Give the public role some permissions to test with
26
const roles = await strapi
27
.service('plugin::users-permissions.role')
0 commit comments