mirror of
https://github.com/usebruno/bruno.git
synced 2025-08-16 14:01:06 +02:00
feat: Create Collection e2e test (#50)
* add selector IDs * add Create Collection e2e test
This commit is contained in:
committed by
GitHub
parent
c0698adcb3
commit
90a29918d0
@ -14,6 +14,7 @@ test.describe('bruno e2e test', () => {
|
||||
|
||||
test('user should be able to load & use sample collection', async () => {
|
||||
await homePage.loadSampleCollection();
|
||||
await expect(homePage.loadSampleCollectionToastSuccess).toBeVisible();
|
||||
|
||||
await homePage.getUsers();
|
||||
await expect(homePage.statusRequestSuccess).toBeVisible();
|
||||
@ -31,4 +32,9 @@ test.describe('bruno e2e test', () => {
|
||||
await expect(homePage.statusRequestSuccess).toBeVisible();
|
||||
});
|
||||
|
||||
test('user should be able to create new collection', async () => {
|
||||
await homePage.createCollection('test');
|
||||
await expect(homePage.createCollectionToastSuccess).toBeVisible();
|
||||
})
|
||||
|
||||
});
|
||||
|
Reference in New Issue
Block a user