Skip to content

Commit

Permalink
Clarify test types during scaffolding (#34638)
Browse files Browse the repository at this point in the history
  • Loading branch information
timneutkens committed Feb 21, 2022
1 parent f110a37 commit 5c8e787
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion plopfile.js
Expand Up @@ -15,7 +15,18 @@ module.exports = function (plop) {
type: 'list',
name: 'type',
message: 'Test type',
choices: ['e2e', 'unit', 'production', 'development'],
choices: [
{
name: 'e2e - Test "next dev" and "next build && next start"',
value: 'e2e',
},
{
name: 'production - Test "next build && next start"',
value: 'production',
},
{ name: 'development - Test "next dev"', value: 'development' },
{ name: 'unit - Test individual files', value: 'unit' },
],
},
],
actions: function (data) {
Expand Down

0 comments on commit 5c8e787

Please sign in to comment.