Skip to content

Commit

Permalink
refactor: add copyright preamble to missing files
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpeintner committed Dec 12, 2023
1 parent cd33926 commit 6de41c0
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 2 deletions.
14 changes: 14 additions & 0 deletions packages/td_to_asyncapi/tests/mapSecurity.test.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
/********************************************************************************
* Copyright (c) 2023 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and
* Document License (2015-05-13) which is available at
* https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document.
*
* SPDX-License-Identifier: EPL-2.0 OR W3C-20150513
********************************************************************************/
/**
* @file Modules test for mapSecurity.js, test its functionality by hardcoded example -> expected output pairs
*/
Expand Down
16 changes: 15 additions & 1 deletion packages/web-new/playwright.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
/********************************************************************************
* Copyright (c) 2023 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and
* Document License (2015-05-13) which is available at
* https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document.
*
* SPDX-License-Identifier: EPL-2.0 OR W3C-20150513
********************************************************************************/
// @ts-check
const { defineConfig, devices } = require('@playwright/test');

Expand Down Expand Up @@ -56,4 +70,4 @@ module.exports = defineConfig({
url: 'http://127.0.0.1:5100',
reuseExistingServer: !process.env.CI,
},
});
});
16 changes: 15 additions & 1 deletion packages/web-new/tests/test.spec.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
/********************************************************************************
* Copyright (c) 2023 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0, or the W3C Software Notice and
* Document License (2015-05-13) which is available at
* https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document.
*
* SPDX-License-Identifier: EPL-2.0 OR W3C-20150513
********************************************************************************/
const { test, expect } = require('@playwright/test');

//Open the playground app before any test is runned
Expand Down Expand Up @@ -2267,4 +2281,4 @@ test.describe("Visualization view functionality", () => {
const expectedFilename = 'Tree-visualization.png'
expect(download.suggestedFilename()).toBe(expectedFilename)
})
})
})

0 comments on commit 6de41c0

Please sign in to comment.