This is an automated email from the ASF dual-hosted git repository. unclegedd pushed a commit to branch test in repository https://gitbox.apache.org/repos/asf/incubator-flagon-useralejs.git
commit 2ef94238fab4bab07d49270d84a14603e863add7 Author: unclegedd <[email protected]> AuthorDate: Tue May 25 08:38:47 2021 -0500 adds license to journey test and rollup config --- journey/userale.journey.js | 16 ++++++++++++++++ rollup.config.js | 16 ++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/journey/userale.journey.js b/journey/userale.journey.js index a5caf58..9e5800c 100644 --- a/journey/userale.journey.js +++ b/journey/userale.journey.js @@ -1,3 +1,19 @@ +/* + * 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. + */ describe('Userale logging', () => { beforeEach(() => { cy.intercept('POST', 'http://localhost:8000/').as('backend') diff --git a/rollup.config.js b/rollup.config.js index 8556fc6..5acba5f 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -1,3 +1,19 @@ +/* + * 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 json from '@rollup/plugin-json'; import nodeResolve from "@rollup/plugin-node-resolve"; import {terser} from "rollup-plugin-terser";
