@@ -5,7 +5,7 @@ const transaction: Transaction = new Transaction();
5
5
describe ( 'Transaction' , ( ) => {
6
6
describe ( 'extracts info from module/function of the first `in_app` frame' , ( ) => {
7
7
it ( 'using module only' , ( ) => {
8
- const event = transaction . process ( {
8
+ const event = transaction . processEvent ( {
9
9
exception : {
10
10
values : [
11
11
{
@@ -31,7 +31,7 @@ describe('Transaction', () => {
31
31
} ) ;
32
32
33
33
it ( 'using function only' , ( ) => {
34
- const event = transaction . process ( {
34
+ const event = transaction . processEvent ( {
35
35
exception : {
36
36
values : [
37
37
{
@@ -57,7 +57,7 @@ describe('Transaction', () => {
57
57
} ) ;
58
58
59
59
it ( 'using module and function' , ( ) => {
60
- const event = transaction . process ( {
60
+ const event = transaction . processEvent ( {
61
61
exception : {
62
62
values : [
63
63
{
@@ -85,7 +85,7 @@ describe('Transaction', () => {
85
85
} ) ;
86
86
87
87
it ( 'using default' , ( ) => {
88
- const event = transaction . process ( {
88
+ const event = transaction . processEvent ( {
89
89
exception : {
90
90
values : [
91
91
{
@@ -109,7 +109,7 @@ describe('Transaction', () => {
109
109
} ) ;
110
110
111
111
it ( 'no value with no `in_app` frame' , ( ) => {
112
- const event = transaction . process ( {
112
+ const event = transaction . processEvent ( {
113
113
exception : {
114
114
values : [
115
115
{
0 commit comments