11 lines
391 B
JavaScript
11 lines
391 B
JavaScript
describe('Instruments on Module page', () => {
|
|
it('shows the correct instrument label', () => {
|
|
cy.visit('modules/module-with-instrument');
|
|
cy.getByDataCy('instrument').first().within(() => {
|
|
cy.getByDataCy('instrument-subheader').should('contain', 'Instrumente - Sprache & Kommunikation');
|
|
});
|
|
// also check that other content blocks don't have the label
|
|
});
|
|
|
|
});
|