mirror of
https://github.com/SomboChea/ui
synced 2024-11-05 14:14:26 +07:00
10 lines
340 B
JavaScript
10 lines
340 B
JavaScript
|
Feature('Menu');
|
||
|
|
||
|
Scenario('check if we find the npm commands to set the registry', (I) => {
|
||
|
I.amOnPage('http://localhost:8080');
|
||
|
I.waitForElement('#header--button-registryInfo', 5);
|
||
|
I.click('#header--button-registryInfo');
|
||
|
I.waitForElement('#registryInfo--dialog-container');
|
||
|
I.see('npm set registry http://localhost:8080');
|
||
|
});
|