Skip to content

Commit 82f67dc

Browse files
committed
Enable integration tests
1 parent b03598d commit 82f67dc

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -138,9 +138,9 @@ workflows:
138138
build-and-test:
139139
jobs:
140140
- build-dependencies
141-
# - test-integrations:
142-
# requires:
143-
# - build-dependencies
141+
- test-integrations:
142+
requires:
143+
- build-dependencies
144144
- test-jest:
145145
requires:
146146
- build-dependencies
@@ -154,5 +154,5 @@ workflows:
154154
requires:
155155
- build-prod
156156
- lint
157-
- test-integrations
157+
# - test-integrations
158158
- test-jest

packages/app/scripts/start.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,15 +203,15 @@ function addMiddleware(devServer, index) {
203203
devServer.use(
204204
'/api',
205205
proxy({
206-
target: 'https://codesandbox.stream',
206+
target: 'https://codesandbox.io',
207207
changeOrigin: true,
208208
})
209209
);
210210

211211
devServer.use(
212212
'/socket.io',
213213
proxy({
214-
target: 'https://sse.codesandbox.stream',
214+
target: 'https://sse.codesandbox.io',
215215
changeOrigin: true,
216216
secure: false,
217217
})

0 commit comments

Comments
 (0)