Skip to content

Commit

Permalink
add FE template, turn off Jest cache (#1743)
Browse files Browse the repository at this point in the history
  • Loading branch information
BlakeHolifield authored Jan 26, 2022
1 parent 824d911 commit 96586f4
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions frontend.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
apiVersion: v1
kind: Template
metadata:
name: insights-chrome
objects:
- apiVersion: cloud.redhat.com/v1alpha1
kind: Frontend
metadata:
name: chrome
spec:
envName: ${ENV_NAME}
title: Chrome
image: ${IMAGE}:${IMAGE_TAG}
API:
versions:
- v1
frontend:
paths:
- /
- /config/chrome
parameters:
- name: ENV_NAME
required: true
- name: IMAGE_TAG
required: true
- name: IMAGE
value: quay.io/cloudservices/insights-chrome
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"fixjs": "eslint src --fix",
"lint": "npm-run-all lint:*",
"lint:js": "eslint src",
"test": "jest --forceExit --detectOpenHandles",
"test": "jest --forceExit --detectOpenHandles --no-cache",
"test:update": "jest --updateSnapshot",
"verify": "npm-run-all lint build test",
"verify:beta": "npm-run-all lint build:beta test",
Expand Down

0 comments on commit 96586f4

Please sign in to comment.