Skip to content

Commit

Permalink
chore(license-headers): fixed again
Browse files Browse the repository at this point in the history
Signed-off-by: Lukas Mertens <git@lukas-mertens.de>
  • Loading branch information
lukas-mertens committed Apr 2, 2024
1 parent f3d2428 commit ee1dd14
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 37 deletions.
2 changes: 2 additions & 0 deletions .licenserc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ header:
- 'public/robots.txt'
- 'src/.prettierrc'
- '.nvmrc'
- '**/.gitkeep'
- '**/*.json5'

comment: on-failure

Expand Down
2 changes: 2 additions & 0 deletions cypress.config.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// SPDX-License-Identifier: Apache-2.0
// Copyright 2020 - 2024 Pionix GmbH and Contributors to EVerest
import { defineConfig } from "cypress";

export default defineConfig({
Expand Down
2 changes: 2 additions & 0 deletions cypress/e2e/connect-screen.cy.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// SPDX-License-Identifier: Apache-2.0
// Copyright 2020 - 2024 Pionix GmbH and Contributors to EVerest
import {faker} from "@faker-js/faker";

describe('Connect-Screen', () => {
Expand Down
38 changes: 2 additions & 36 deletions cypress/support/commands.ts
Original file line number Diff line number Diff line change
@@ -1,40 +1,6 @@
// SPDX-License-Identifier: Apache-2.0
// Copyright 2020 - 2024 Pionix GmbH and Contributors to EVerest
/// <reference types="cypress" />
// ***********************************************
// This example commands.ts shows you how to
// create various custom commands and overwrite
// existing commands.
//
// For more comprehensive examples of custom
// commands please read more here:
// https://on.cypress.io/custom-commands
// ***********************************************
//
//
// -- This is a parent command --
// Cypress.Commands.add('login', (email, password) => { ... })
//
//
// -- This is a child command --
// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... })
//
//
// -- This is a dual command --
// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... })
//
//
// -- This will overwrite an existing command --
// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... })
//
// declare global {
// namespace Cypress {
// interface Chainable {
// login(email: string, password: string): Chainable<void>
// drag(subject: string, options?: Partial<TypeOptions>): Chainable<Element>
// dismiss(subject: string, options?: Partial<TypeOptions>): Chainable<Element>
// visit(originalFn: CommandOriginalFn, url: string, options: Partial<VisitOptions>): Chainable<Element>
// }
// }
// }
export {};

declare global {
Expand Down
4 changes: 3 additions & 1 deletion cypress/support/e2e.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// SPDX-License-Identifier: Apache-2.0
// Copyright 2020 - 2024 Pionix GmbH and Contributors to EVerest
// ***********************************************************
// This example support/e2e.ts is processed and
// loaded automatically before your test files.
Expand All @@ -17,4 +19,4 @@
import './commands'

// Alternatively you can use CommonJS syntax:
// require('./commands')
// require('./commands')

0 comments on commit ee1dd14

Please sign in to comment.