File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -117,6 +117,7 @@ function createReduxEnhancer(enhancerOptions?: Partial<SentryEnhancerOptions>):
117
117
}
118
118
119
119
/* Allow user to configure scope with latest state */
120
+ // eslint-disable-next-line @typescript-eslint/unbound-method
120
121
const { configureScopeWithState } = options ;
121
122
if ( typeof configureScopeWithState === 'function' ) {
122
123
configureScopeWithState ( scope , newState ) ;
Original file line number Diff line number Diff line change 6
6
yarn build
7
7
if [[ ! -z $DANGER_GITHUB_API_TOKEN ]]; then
8
8
yarn lint
9
- yarn test
9
+ yarn test --ignore= " @sentry/ember "
10
10
yarn codecov
11
11
yarn danger ci || true # for external PRs danger will fail because of token
12
12
else
13
13
yarn lint
14
- yarn test
14
+ yarn test --ignore= " @sentry/ember "
15
15
fi
Original file line number Diff line number Diff line change @@ -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