Convert device-view.js to typescript (#4105)

This commit is contained in:
Markus
2022-10-12 17:07:04 +02:00
committed by GitHub
parent e72fdf91dc
commit e490978410
9 changed files with 400 additions and 445 deletions

View File

@@ -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');
});
});

View File

@@ -1,6 +1,5 @@
import {runFrontendTest} from '../support/utils';
describe('Motd testing', () => {
before(() => {
cy.visit('/');

View File

@@ -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
};

View File

@@ -14,4 +14,4 @@
// ***********************************************************
// Import commands.js using ES2015 syntax:
import './commands'
import './commands';