Skip to content

Commit e945381

Browse files
committed
remove CHROME_BIN from docker env
1 parent f275a1e commit e945381

File tree

2 files changed

+15
-16
lines changed

2 files changed

+15
-16
lines changed

.circleci/config.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@ defaults: &defaults
44
working_directory: ~/project/react-mentions
55
docker:
66
- image: cimg/node:16.15.0
7-
environment:
8-
CHROME_BIN: '/usr/bin/google-chrome'
9-
CIRCLE_BRANCH: $CIRCLE_BRANCH
7+
# environment:
8+
# CHROME_BIN: '/usr/bin/google-chrome'
109

1110
attach_workspace: &attach_workspace
1211
attach_workspace:
@@ -61,10 +60,10 @@ jobs:
6160
- *restore_cache
6261
- run:
6362
name: Test
64-
command: yarn test --coverage
65-
- run:
66-
name: Codecov
67-
command: bash <(curl -s https://codecov.io/bash)
63+
command: yarn test
64+
# - run:
65+
# name: Codecov
66+
# command: bash <(curl -s https://codecov.io/bash)
6867

6968
release:
7069
<<: *defaults

jest/setupTestFramework.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ import 'jest-enzyme'
33

44
import { configure } from 'enzyme'
55
import Adapter from 'enzyme-adapter-react-16'
6-
import jasmineReporters from 'jasmine-reporters'
6+
// import jasmineReporters from 'jasmine-reporters'
77

88
configure({ adapter: new Adapter() })
99

10-
jasmine.VERBOSE = true
10+
// jasmine.VERBOSE = true
1111

12-
jasmine.getEnv().addReporter(
13-
new jasmineReporters.JUnitXmlReporter({
14-
consolidateAll: false,
15-
savePath: './reports/junit',
16-
filePrefix: 'test-results-',
17-
})
18-
)
12+
// jasmine.getEnv().addReporter(
13+
// new jasmineReporters.JUnitXmlReporter({
14+
// consolidateAll: false,
15+
// savePath: './reports/junit',
16+
// filePrefix: 'test-results-',
17+
// })
18+
// )

0 commit comments

Comments
 (0)