mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 10:33:59 -05:00
Latest cypress: - updated all the tests - fixed up warnings - got rid of isolation stuff, it's now isolated by default - added simple docs - added `--noLocal` to prevent any local config from screwing up when testing locally - store screenshot artifacts if things go wrong
10 lines
168 B
TypeScript
10 lines
168 B
TypeScript
import {runFrontendTest} from '../support/utils';
|
|
|
|
describe('Motd testing', () => {
|
|
before(() => {
|
|
cy.visit('/');
|
|
});
|
|
|
|
runFrontendTest('motd');
|
|
});
|