Skip to content

Commit aa38e37

Browse files
authored
test(profiling-node): Ensure E2E tests run for profiling-node (#15248)
This test was still skipped. I un-skipped it and actually split this up into dedicated tests for clarity. Can't get electron to run successfully on CI (works locally for me...) so skipping it for now, until maybe @timfish can figure it out :D
1 parent 3e31bdc commit aa38e37

File tree

19 files changed

+103
-29
lines changed

19 files changed

+103
-29
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "node-profiling-cjs",
3+
"version": "1.0.0",
4+
"private": true,
5+
"scripts": {
6+
"typecheck": "tsc --noEmit",
7+
"test": "node dist/cjs/index.js",
8+
"clean": "npx rimraf node_modules dist",
9+
"test:build": "pnpm install && node build-cjs.mjs",
10+
"test:assert": "pnpm run typecheck && pnpm run test"
11+
},
12+
"dependencies": {
13+
"@playwright/test": "~1.50.0",
14+
"@sentry/node": "latest || *",
15+
"@sentry/profiling-node": "latest || *",
16+
"esbuild": "0.20.0",
17+
"typescript": "^5.7.3"
18+
},
19+
"volta": {
20+
"extends": "../../package.json"
21+
}
22+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dist
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# @sentry:registry=http://127.0.0.1:4873
2+
# @sentry-internal:registry=http://127.0.0.1:4873

dev-packages/e2e-tests/test-applications/node-profiling/__tests__/electron.spec.js dev-packages/e2e-tests/test-applications/node-profiling-electron/__tests__/electron.spec.js

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ test('an h1 contains hello world"', async () => {
77
process: {
88
env: {
99
...process.env,
10+
NODE_ENV: 'development',
1011
},
1112
},
1213
});
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "node-profiling-electron",
3+
"version": "1.0.0",
4+
"private": true,
5+
"scripts": {
6+
"clean": "npx rimraf node_modules dist",
7+
"test:build": "pnpm install",
8+
"test:assert": "$(pnpm bin)/electron-rebuild && pnpm playwright test"
9+
},
10+
"dependencies": {
11+
"@electron/rebuild": "^3.7.0",
12+
"@playwright/test": "~1.50.0",
13+
"@sentry/electron": "latest || *",
14+
"@sentry/node": "latest || *",
15+
"@sentry/profiling-node": "latest || *",
16+
"electron": "^33.2.0"
17+
},
18+
"volta": {
19+
"extends": "../../package.json"
20+
},
21+
"sentryTest": {
22+
"skip": true
23+
}
24+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dist
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# @sentry:registry=http://127.0.0.1:4873
2+
# @sentry-internal:registry=http://127.0.0.1:4873
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import * as Sentry from '@sentry/node';
2+
import { nodeProfilingIntegration } from '@sentry/profiling-node';
3+
4+
const wait = (ms: number) => new Promise(resolve => setTimeout(resolve, ms));
5+
6+
Sentry.init({
7+
dsn: 'https://[email protected]/6625302',
8+
integrations: [nodeProfilingIntegration()],
9+
tracesSampleRate: 1.0,
10+
profilesSampleRate: 1.0,
11+
});
12+
13+
Sentry.startSpan({ name: 'Precompile test' }, async () => {
14+
await wait(500);
15+
});
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "node-profiling-esm",
3+
"version": "1.0.0",
4+
"private": true,
5+
"scripts": {
6+
"typecheck": "tsc --noEmit",
7+
"test": "node dist/esm/index.mjs",
8+
"clean": "npx rimraf node_modules dist",
9+
"test:build": "pnpm install && node build-esm.mjs",
10+
"test:assert": "pnpm run typecheck && pnpm run test"
11+
},
12+
"dependencies": {
13+
"@playwright/test": "~1.50.0",
14+
"@sentry/node": "latest || *",
15+
"@sentry/profiling-node": "latest || *",
16+
"esbuild": "0.20.0",
17+
"typescript": "^5.7.3"
18+
},
19+
"volta": {
20+
"extends": "../../package.json"
21+
}
22+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"compilerOptions": {
3+
"types": ["node"],
4+
"esModuleInterop": true,
5+
"lib": ["es2018"],
6+
"strict": true,
7+
"outDir": "dist",
8+
"target": "ESNext",
9+
"moduleResolution": "node",
10+
"skipLibCheck": true
11+
},
12+
"include": ["index.ts"]
13+
}

dev-packages/e2e-tests/test-applications/node-profiling/package.json

-29
This file was deleted.

0 commit comments

Comments
 (0)