42 lines
1.4 KiB
JavaScript
42 lines
1.4 KiB
JavaScript
import selectors from '../../helpers/selectors.js';
|
|
import getBrowser from '../../helpers/puppeteer';
|
|
|
|
describe('Item descriptor path', () => {
|
|
let browser;
|
|
let page;
|
|
beforeAll(async() => {
|
|
browser = await getBrowser();
|
|
page = browser.page;
|
|
await page.loginAndModule('buyer', 'item');
|
|
await page.accessToSearchResult('1');
|
|
await page.accessToSection('item.card.basicData');
|
|
});
|
|
|
|
afterAll(async() => {
|
|
await browser.close();
|
|
});
|
|
|
|
it('should set the item to inactive', async() => {
|
|
await page.waitToClick(selectors.itemBasicData.isActiveCheckbox);
|
|
await page.waitToClick(selectors.itemBasicData.submitBasicDataButton);
|
|
const message = await page.waitForSnackbar();
|
|
|
|
expect(message.text).toContain('Data saved!');
|
|
});
|
|
|
|
it('should reload the section and check the inactive icon is visible', async() => {
|
|
await page.reloadSection('item.card.basicData');
|
|
const visibleIcon = await page.isVisible(selectors.itemDescriptor.inactiveIcon);
|
|
|
|
expect(visibleIcon).toBeTruthy();
|
|
});
|
|
|
|
it('should set the item back to active', async() => {
|
|
await page.waitToClick(selectors.itemBasicData.isActiveCheckbox);
|
|
await page.waitToClick(selectors.itemBasicData.submitBasicDataButton);
|
|
const message = await page.waitForSnackbar();
|
|
|
|
expect(message.text).toContain('Data saved!');
|
|
});
|
|
});
|