From fa4b8cec36dd6f96bbb316416e30b7922ba666b0 Mon Sep 17 00:00:00 2001 From: aeolianeth Date: Tue, 14 Dec 2021 21:46:32 +1000 Subject: [PATCH] Remove unused files These files were remnants of GCP days + create-react-app. They're unused. This commit removes them. --- app.template.yaml | 12 ------------ app.yaml | 12 ------------ src/components/App.test.tsx | 9 --------- 3 files changed, 33 deletions(-) delete mode 100644 app.template.yaml delete mode 100644 app.yaml delete mode 100644 src/components/App.test.tsx diff --git a/app.template.yaml b/app.template.yaml deleted file mode 100644 index b7f9c2e77c..0000000000 --- a/app.template.yaml +++ /dev/null @@ -1,12 +0,0 @@ -runtime: python27 -api_version: 1 -threadsafe: true -default_expiration: '1s' -handlers: - - url: /(.*\.(css|html|ico|js|svg|otf)) - static_files: build/\1 - upload: build/(.*\.(css|html|ico|js|svg|otf)) - - url: /.* - static_files: build/index.html - upload: build/index.html - secure: always \ No newline at end of file diff --git a/app.yaml b/app.yaml deleted file mode 100644 index 48e04d1c6e..0000000000 --- a/app.yaml +++ /dev/null @@ -1,12 +0,0 @@ -runtime: python27 -api_version: 1 -threadsafe: true -default_expiration: '1s' -handlers: - - url: /(.*\.(css|html|ico|js|svg|otf)) - static_files: build/\1 - upload: build/(.*\.(css|html|ico|js|svg|otf)) - - url: /.* - static_files: build/index.html - upload: build/index.html - secure: always diff --git a/src/components/App.test.tsx b/src/components/App.test.tsx deleted file mode 100644 index 21895b2631..0000000000 --- a/src/components/App.test.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import { render, screen } from '@testing-library/react' - -import App from './App' - -test('renders learn react link', () => { - render() - const linkElement = screen.getByText(/learn react/i) - expect(linkElement).toBeInTheDocument() -})