This is an automated email from the ASF dual-hosted git repository.
jamesbognar pushed a commit to branch release-manager
in repository https://gitbox.apache.org/repos/asf/juneau.git
The following commit(s) were added to refs/heads/release-manager by this push:
new 010bda0a10 Add Apache license headers to Playwright e2e TypeScript
files (RAT compliance)
010bda0a10 is described below
commit 010bda0a102e2da0420af42539806400df166cd4
Author: James Bognar <[email protected]>
AuthorDate: Wed Aug 19 16:48:44 2026 -0400
Add Apache license headers to Playwright e2e TypeScript files (RAT
compliance)
Adds the standard ASF license header to the five Playwright e2e files
(playwright.config.ts and the smoke/home/releases/nav specs) so they pass
the Apache RAT source-header audit. Header-only change; no test behavior
is affected.
---
e2e/playwright.config.ts | 17 +++++++++++++++++
e2e/tests/home.spec.ts | 17 +++++++++++++++++
e2e/tests/nav.spec.ts | 17 +++++++++++++++++
e2e/tests/releases.spec.ts | 17 +++++++++++++++++
e2e/tests/smoke.spec.ts | 17 +++++++++++++++++
5 files changed, 85 insertions(+)
diff --git a/e2e/playwright.config.ts b/e2e/playwright.config.ts
index 84b875e24f..ca9f9212a6 100644
--- a/e2e/playwright.config.ts
+++ b/e2e/playwright.config.ts
@@ -1,3 +1,20 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
import { defineConfig, devices } from '@playwright/test';
import path from 'node:path';
import os from 'node:os';
diff --git a/e2e/tests/home.spec.ts b/e2e/tests/home.spec.ts
index 244096e6f4..c247a7ae3d 100644
--- a/e2e/tests/home.spec.ts
+++ b/e2e/tests/home.spec.ts
@@ -1,3 +1,20 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
import { test, expect } from '@playwright/test';
test.describe('Home page', () => {
diff --git a/e2e/tests/nav.spec.ts b/e2e/tests/nav.spec.ts
index e465188a36..85fb52a447 100644
--- a/e2e/tests/nav.spec.ts
+++ b/e2e/tests/nav.spec.ts
@@ -1,3 +1,20 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
import { test, expect, type Page } from '@playwright/test';
/**
diff --git a/e2e/tests/releases.spec.ts b/e2e/tests/releases.spec.ts
index 284ea85c71..885de01827 100644
--- a/e2e/tests/releases.spec.ts
+++ b/e2e/tests/releases.spec.ts
@@ -1,3 +1,20 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
import { test, expect, type Locator, type Page } from '@playwright/test';
/**
diff --git a/e2e/tests/smoke.spec.ts b/e2e/tests/smoke.spec.ts
index 862b58fe77..35ff558730 100644
--- a/e2e/tests/smoke.spec.ts
+++ b/e2e/tests/smoke.spec.ts
@@ -1,3 +1,20 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
import { test, expect, type Page } from '@playwright/test';
/** Collects `console.error`-severity messages for the lifetime of a page
navigation. */