mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 10:33:59 -05:00
Convert device-view.js to typescript (#4105)
This commit is contained in:
@@ -97,7 +97,7 @@ describe('Known good state test', () => {
|
||||
},
|
||||
},
|
||||
);
|
||||
})
|
||||
});
|
||||
|
||||
afterEach('Ensure no output in console', () => {
|
||||
cy.window().then(win => {
|
||||
@@ -115,5 +115,4 @@ describe('Known good state test', () => {
|
||||
cy.get('span.lm_title:visible').contains('Output');
|
||||
cy.get('span.lm_title:visible').contains('Conformance');
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
import {runFrontendTest} from '../support/utils';
|
||||
|
||||
|
||||
describe('Motd testing', () => {
|
||||
before(() => {
|
||||
cy.visit('/');
|
||||
|
||||
@@ -17,6 +17,6 @@
|
||||
*/
|
||||
// eslint-disable-next-line no-unused-vars
|
||||
module.exports = (on, config) => {
|
||||
// `on` is used to hook into various events Cypress emits
|
||||
// `config` is the resolved Cypress config
|
||||
}
|
||||
// `on` is used to hook into various events Cypress emits
|
||||
// `config` is the resolved Cypress config
|
||||
};
|
||||
|
||||
@@ -14,4 +14,4 @@
|
||||
// ***********************************************************
|
||||
|
||||
// Import commands.js using ES2015 syntax:
|
||||
import './commands'
|
||||
import './commands';
|
||||
|
||||
Reference in New Issue
Block a user