We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 551cea6 commit dbe12ddCopy full SHA for dbe12dd
platform-includes/getting-started-verify/javascript.nestjs.mdx
@@ -1,14 +1,6 @@
1
-```javascript {"onboardingOptions": {"performance": "1-4, 12"}}
2
-Sentry.startSpan({
3
- op: "test",
4
- name: "My First Test Span",
5
-}, () => {
6
- setTimeout(() => {
7
- try {
8
- foo();
9
- } catch (e) {
10
- Sentry.captureException(e);
11
- }
12
- }, 99);
13
-});
+```javascript
+@Get("/debug-sentry")
+getError() {
+ throw new Error("My first Sentry error!");
+}
14
```
0 commit comments