Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / drupal / console-en / translations / generate.jstest.yml
1 description: 'Generate a JavaScript test.'
2 help: 'The <info>generate:jstest</info> command helps you to generate a new JavaScript test.'
3 welcome: 'Welcome to the Drupal module generator'
4 options:
5   class: 'JavaScript test Class name'
6 questions:
7   module: common.questions.module
8   class: 'Enter the JavaScript test class name'
9 examples:
10   - description: 'Generate a module specifying the module name, machine name, the path, its description, drupal core and the package name. In this example the composer file, the unit test and twig template are generated too'
11     execution: |
12       drupal generate:module  \
13         --module="modulename"  \
14         --machine-name="modulename"  \
15         --module-path="/modules/custom"  \
16         --description="My Awesome Module"  \
17         --core="8.x"  \
18         --package="Custom"  \
19         --module-file  \
20         --composer  \
21         --test  \
22         --twigtemplate