Skip to content

Commit 2e07f63

Browse files
committed
remove comment
1 parent 84d2376 commit 2e07f63

File tree

5 files changed

+5
-21
lines changed

5 files changed

+5
-21
lines changed

.github/workflows/tests-backend.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,6 @@ jobs:
5757
- name: Unit tests API
5858
run: yarn --cwd redisinsight/api/ test:cov --ci --silent
5959

60-
61-
- name: Prepare report
62-
if: always()
63-
working-directory: redisinsight/api
64-
run: |
65-
mkdir report
66-
cp -R ./coverage ./report
67-
cp -a ./reports ./report/report
68-
6960
- name: Upload Test Report
7061
uses: actions/upload-artifact@v4
7162
if: always()

.github/workflows/tests-frontend.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,6 @@ jobs:
5555
- name: Unit tests UI
5656
run: yarn test:cov --ci --silent
5757

58-
- name: Prepare report
59-
if: always()
60-
run: |
61-
mkdir report
62-
cp -R ./coverage ./report
63-
cp -a ./reports ./report/report
64-
6558
- name: Upload Test Report
6659
uses: actions/upload-artifact@v4
6760
if: always()

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,13 @@ redisinsight/ui/style.css.map
5353
redisinsight/ui/dist
5454
redisinsight/api/commands
5555
redisinsight/api/guides
56+
redisinsight/api/report
5657
redisinsight/api/reports
5758
redisinsight/api/dist-minified
5859
redisinsight/api/tutorials
5960
redisinsight/api/content
6061
redisinsight/ui/dist-stats.html
62+
report
6163
reports
6264
dist
6365
distWeb

jest.config.cjs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,8 @@ module.exports = {
5252
[
5353
'jest-html-reporters',
5454
{
55-
publicPath: './reports',
55+
publicPath: './report',
5656
filename: 'index.html',
57-
openReport: true,
5857
},
5958
],
6059
],

redisinsight/api/package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,9 +173,8 @@
173173
"reporters": [
174174
"default",
175175
["jest-html-reporters", {
176-
"publicPath": "./reports",
177-
"filename": "index.html",
178-
"openReport": true
176+
"publicPath": "./report",
177+
"filename": "index.html"
179178
}]
180179
]
181180
}

0 commit comments

Comments
 (0)