Initial Drupal 11 with DDEV setup
This commit is contained in:
16
vendor/chi-teck/drupal-code-generator/templates/Test/_nightwatch/nightwatch.twig
vendored
Normal file
16
vendor/chi-teck/drupal-code-generator/templates/Test/_nightwatch/nightwatch.twig
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
module.exports = {
|
||||
'@tags': ['{{ machine_name }}'],
|
||||
before(browser) {
|
||||
browser.drupalInstall();
|
||||
},
|
||||
after(browser) {
|
||||
browser.drupalUninstall();
|
||||
},
|
||||
'Front page': browser => {
|
||||
browser
|
||||
.drupalRelativeURL('/')
|
||||
.waitForElementVisible('body', 1000)
|
||||
.assert.containsText('h1', 'Log in')
|
||||
.drupalLogAndEnd({onlyOnError: false});
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user