blob: 58d72623da9b1ea63f0cf6fbad8fec0f8994cc99 [file] [log] [blame] [raw]
function runFrontendTest(name) {
it(name, () => {
cy.window().then(win => {
return win.compilerExplorerFrontendTesting.run(name);
});
});
}
describe('Frontendtestresults', () => {
before(() => {
cy.visit('/');
});
runFrontendTest('HelloWorld');
});
describe('Motd testing', () => {
before(() => {
cy.visit('/');
});
runFrontendTest('motd');
});