feat(tools): test file buttons (#44919)
* feat(tools): test file buttons * fix: set SHOW_NEW_CURRICULUM to true * fix: landing test
This commit is contained in:
14
cypress/integration/learn/challenges/multifile.js
Normal file
14
cypress/integration/learn/challenges/multifile.js
Normal file
@ -0,0 +1,14 @@
|
||||
const location =
|
||||
'/learn/2022/responsive-web-design/learn-accessibility-by-building-a-quiz/step-2';
|
||||
|
||||
describe('Challenge with multifile editor', () => {
|
||||
before(() => {
|
||||
cy.visit(location);
|
||||
});
|
||||
|
||||
it('renders the file tab buttons', () => {
|
||||
cy.get('.monaco-editor-tabs').should('exist');
|
||||
cy.get('.monaco-editor-tabs').contains('index.html');
|
||||
cy.get('.monaco-editor-tabs').contains('styles.css');
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user