91 lines
3.5 KiB
JavaScript
91 lines
3.5 KiB
JavaScript
import selectors from '../../helpers/selectors.js';
|
|
import createNightmare from '../../helpers/nightmare';
|
|
|
|
describe('Item', () => {
|
|
describe('Edit tax path', () => {
|
|
const nightmare = createNightmare();
|
|
|
|
beforeAll(() => {
|
|
return nightmare
|
|
.waitForLogin('buyer');
|
|
});
|
|
|
|
it('should access to the items index by clicking the items button', done => {
|
|
return nightmare
|
|
.click(selectors.moduleAccessView.itemsSectionButton)
|
|
.wait(selectors.itemsIndex.createItemButton)
|
|
.parsedUrl()
|
|
.then(url => {
|
|
expect(url.hash).toEqual('#!/item/index');
|
|
done();
|
|
}).catch(done.fail);
|
|
});
|
|
|
|
it('should search for the item Gem of Time', done => {
|
|
return nightmare
|
|
.wait(selectors.itemsIndex.searchResult)
|
|
.type(selectors.itemsIndex.searchItemInput, 'Gem of Time')
|
|
.click(selectors.itemsIndex.searchButton)
|
|
.waitForNumberOfElements(selectors.itemsIndex.searchResult, 1)
|
|
.countElement(selectors.itemsIndex.searchResult)
|
|
.then(result => {
|
|
expect(result).toEqual(1);
|
|
done();
|
|
}).catch(done.fail);
|
|
});
|
|
|
|
it(`should click on the search result to access to the item tax`, done => {
|
|
return nightmare
|
|
.waitForTextInElement(selectors.itemsIndex.searchResult, 'Gem of Time')
|
|
.waitToClick(selectors.itemsIndex.searchResult)
|
|
.waitToClick(selectors.itemTax.taxButton)
|
|
.waitForURL('tax')
|
|
.url()
|
|
.then(url => {
|
|
expect(url).toContain('tax');
|
|
done();
|
|
}).catch(done.fail);
|
|
});
|
|
|
|
it(`should add the item tax to all countries`, done => {
|
|
return nightmare
|
|
.waitToClick(selectors.itemTax.firstClassSelect)
|
|
.waitToClick(selectors.itemTax.firstClassSelectOptionTwo)
|
|
.waitToClick(selectors.itemTax.secondClassSelect)
|
|
.waitToClick(selectors.itemTax.secondClassSelectOptionOne)
|
|
.waitToClick(selectors.itemTax.thirdClassSelect)
|
|
.waitToClick(selectors.itemTax.thirdClassSelectOptionTwo)
|
|
.click(selectors.itemTax.submitTaxButton)
|
|
.waitForLastSnackbar()
|
|
.then(result => {
|
|
expect(result).toEqual('Data saved!');
|
|
done();
|
|
}).catch(done.fail);
|
|
});
|
|
|
|
it(`should confirm the item tax class was edited`, done => {
|
|
return nightmare
|
|
.click(selectors.itemTags.tagsButton)
|
|
.wait(selectors.itemTags.firstTagDisabled)
|
|
.click(selectors.itemTax.taxButton)
|
|
.waitToClick(selectors.itemTax.taxButton)
|
|
.waitForTextInInput(selectors.itemTax.firstClassSelect, 'reduced')
|
|
.getInputValue(selectors.itemTax.firstClassSelect)
|
|
.then(result => {
|
|
expect(result).toEqual('Reduced VAT');
|
|
return nightmare
|
|
.getInputValue(selectors.itemTax.secondClassSelect);
|
|
})
|
|
.then(result => {
|
|
expect(result).toEqual('General VAT');
|
|
return nightmare
|
|
.getInputValue(selectors.itemTax.thirdClassSelect);
|
|
})
|
|
.then(result => {
|
|
expect(result).toEqual('Reduced VAT');
|
|
done();
|
|
}).catch(done.fail);
|
|
});
|
|
});
|
|
});
|