Files
DefinitelyTyped/types/raven/raven-tests.ts
Daniel Herman c5f2ca04af Support the single argument options only config API
`Raven.config` supports calling it with only the configuration object if
you'd like the DSN to be pulled from environment variables

6ce861f9f3/lib/client.js (L44-L47)
2018-02-12 14:37:29 -05:00

38 lines
983 B
TypeScript

import * as Raven from 'raven';
const dsn = '___DSN___';
const client = Raven.config(dsn, { autoBreadcrumbs: true }).install();
Raven.config(dsn, {
logger: 'logger',
parseUser: ['id', 'name'],
autoBreadcrumbs: false,
});
console.log(Raven.version);
Raven.config({
release: 'foobar'
});
Raven.config(dsn).install({ captureUnhandledRejections: true });
client.setContext({});
client.on('logged', () => { });
client.process({});
client.captureMessage('Broken!', (err, eventId) => { });
new Raven.Client({ name: 'YAY!' });
new Raven.Client(dsn, { name: 'YAY!' });
new Raven.Client(dsn);
try {
throw new Error();
} catch (e) {
const eventId = Raven.captureException(e, (sendErr, eventId) => { });
}
Raven.setContext({});
Raven.mergeContext({});
Raven.context(() => {
Raven.captureBreadcrumb({});
});
setTimeout(Raven.wrap(() => {}), 1000);
Raven.parseDSN('https://8769c40cf49c4cc58b51fa45d8e2d166:296768aa91084e17b5ac02d3ad5bc7e7@app.getsentry.com/269');