blob: 99e6a89a1c50b5da11e5871cd82a9eb05f1c92fd [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');
});