File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 87
87
key : ${{ runner.os }}-${{ github.sha }}
88
88
- run : yarn install
89
89
- name : Unit Tests
90
- run : yarn test
90
+ run : yarn test --ignore="@sentry/ember"
91
91
- uses : codecov/codecov-action@v1
92
92
93
93
job_browserstack_test :
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ interface WrapperOptions {
26
26
rethrowAfterCapture : boolean ;
27
27
callbackWaitsForEmptyEventLoop : boolean ;
28
28
captureTimeoutWarning : boolean ;
29
- timeoutWarning : number ;
29
+ timeoutWarningLimit : number ;
30
30
}
31
31
32
32
/**
@@ -117,7 +117,7 @@ export const wrapHandler = <TEvent = any, TResult = any>(
117
117
handler : Handler ,
118
118
handlerOptions : Partial < WrapperOptions > = { } ,
119
119
) : Handler => {
120
- const options = {
120
+ const options : WrapperOptions = {
121
121
flushTimeout : 2000 ,
122
122
rethrowAfterCapture : true ,
123
123
callbackWaitsForEmptyEventLoop : false ,
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ if [[ "$(cut -d. -f1 <<< "$TRAVIS_NODE_VERSION")" -le 6 ]]; then
10
10
yarn build --ignore=" @sentry/ember" --ignore=" @sentry/serverless"
11
11
nvm use 6
12
12
# browser can be tested only on Node >= v8 because Karma is not supporting anything older
13
- yarn test --ignore=" @sentry/tracing" --ignore=" @sentry/react" --ignore=" @sentry/gatsby" --ignore=" @sentry/ember" --ignore=" @sentry-internal/eslint-plugin-sdk" --ignore=" @sentry-internal/eslint-config-sdk" --ignore=" @sentry/serverless" --ignore=" @sentry/browser" --ignore=" @sentry/integrations"
13
+ yarn test --ignore=" @sentry/tracing" --ignore=" @sentry/react" --ignore=" @sentry/gatsby" --ignore=" @sentry/ember" --ignore=" @sentry-internal/eslint-plugin-sdk" --ignore=" @sentry-internal/eslint-config-sdk" --ignore=" @sentry/serverless" --ignore=" @sentry/browser" --ignore=" @sentry/integrations"
14
14
elif [[ " $( cut -d. -f1 <<< " $TRAVIS_NODE_VERSION" ) " -le 8 ]]; then
15
15
yarn install --ignore-engines --ignore-scripts
16
16
# ember requires Node >= 10 to build
@@ -20,5 +20,5 @@ elif [[ "$(cut -d. -f1 <<< "$TRAVIS_NODE_VERSION")" -le 8 ]]; then
20
20
else
21
21
yarn install
22
22
yarn build
23
- yarn test
23
+ yarn test --ignore= " @sentry/ember "
24
24
fi
You can’t perform that action at this time.
0 commit comments