Skip to content

Commit 1af18c9

Browse files
committed
Merge branch 'develop' into abhi-remove-sentry-tracing
2 parents 86f2d6c + fdeaadf commit 1af18c9

File tree

8 files changed

+18
-74
lines changed

8 files changed

+18
-74
lines changed

.craft.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -131,12 +131,7 @@ targets:
131131
id: '@sentry-internal/eslint-config-sdk'
132132
includeNames: /^sentry-internal-eslint-config-sdk-\d.*\.tgz$/
133133

134-
## 8. Deprecated packages we still release (but no packages depend on them anymore)
135-
- name: npm
136-
id: '@sentry/hub'
137-
includeNames: /^sentry-hub-\d.*\.tgz$/
138-
139-
## 9. Experimental packages
134+
## 8. Experimental packages
140135
- name: npm
141136
id: '@sentry/node-experimental'
142137
includeNames: /^sentry-node-experimental-\d.*\.tgz$/

.github/workflows/build.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -715,6 +715,13 @@ jobs:
715715
PW_BUNDLE: ${{ matrix.bundle }}
716716
working-directory: dev-packages/browser-integration-tests
717717
run: yarn test:ci${{ matrix.project && format(' --project={0}', matrix.project) || '' }}${{ matrix.shard && format(' --shard={0}/{1}', matrix.shard, matrix.shards) || '' }}
718+
- name: Upload Playwright Traces
719+
uses: actions/upload-artifact@v3
720+
if: always()
721+
with:
722+
name: playwright-traces
723+
path: dev-packages/browser-integration-tests/test-results
724+
718725

719726
job_browser_loader_tests:
720727
name: Playwright Loader (${{ matrix.bundle }}) Tests
@@ -772,6 +779,12 @@ jobs:
772779
run: |
773780
cd dev-packages/browser-integration-tests
774781
yarn test:loader
782+
- name: Upload Playwright Traces
783+
uses: actions/upload-artifact@v3
784+
if: always()
785+
with:
786+
name: playwright-traces
787+
path: dev-packages/browser-integration-tests/test-results
775788

776789
job_browser_integration_tests:
777790
name: Browser (${{ matrix.browser }}) Tests

dev-packages/browser-integration-tests/playwright.config.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ const config: PlaywrightTestConfig = {
1010
workers: process.env.CI ? 3 : undefined,
1111
testMatch: /test.ts/,
1212

13+
use: {
14+
trace: process.env.CI ? 'retry-with-trace' : 'off',
15+
},
16+
1317
projects: [
1418
{
1519
name: 'chromium',

dev-packages/e2e-tests/verdaccio-config/config.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -194,12 +194,6 @@ packages:
194194
unpublish: $all
195195
# proxy: npmjs # Don't proxy for E2E tests!
196196

197-
'@sentry/hub':
198-
access: $all
199-
publish: $all
200-
unpublish: $all
201-
# proxy: npmjs # Don't proxy for E2E tests!
202-
203197
'@sentry-internal/*':
204198
access: $all
205199
publish: $all

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@
5757
"packages/eslint-plugin-sdk",
5858
"packages/feedback",
5959
"packages/gatsby",
60-
"packages/hub",
6160
"packages/integrations",
6261
"packages/integration-shims",
6362
"packages/nextjs",

packages/hub/LICENSE

Lines changed: 0 additions & 14 deletions
This file was deleted.

packages/hub/README.md

Lines changed: 0 additions & 21 deletions
This file was deleted.

packages/hub/package.json

Lines changed: 0 additions & 26 deletions
This file was deleted.

0 commit comments

Comments
 (0)