mirror of
https://github.com/HangarMC/Hangar.git
synced 2024-11-21 01:21:54 +08:00
11 lines
279 B
TypeScript
11 lines
279 B
TypeScript
Feature("Authors Page");
|
|
|
|
Scenario("Test Author List", async ({ I, util, IndexPage }) => {
|
|
util.openHangarPage("/authors");
|
|
|
|
I.dontSee("No authors found");
|
|
|
|
I.fillField("input[type='text']", "Some Value That doesnt Exist");
|
|
I.waitForText("No authors found");
|
|
});
|