File tree Expand file tree Collapse file tree 3 files changed +17
-16
lines changed
Expand file tree Collapse file tree 3 files changed +17
-16
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " gotdibbs-toolbox" ,
3- "version" : " 2.3.2 " ,
3+ "version" : " 2.3.3 " ,
44 "description" : " Admin tools for Dynamics 365/CRM" ,
55 "main" : " index.js" ,
66 "scripts" : {
Original file line number Diff line number Diff line change @@ -82,8 +82,9 @@ function getDynamicsState() {
8282 }
8383 else {
8484 // Notify honeybadger only if it looks like we might be in an actual CRM environment
85- if ( / ( d y n a m i c s | c r m ) / . test ( document . location . href ) &&
86- ! / ( o p e r a t i o n s | r e t a i l | a x | h o m e ) \. d y n a m i c s / . test ( document . location . href ) ) {
85+ if ( / ( d y n a m i c s | c r m ) / i. test ( document . location . href ) &&
86+ ! / ( o p e r a t i o n s | r e t a i l | a x | h o m e ) \. d y n a m i c s / i. test ( document . location . href ) &&
87+ ! / p a g e t y p e = a p p s / i. test ( document . location . href ) ) {
8788 Honeybadger . notify ( 'Failed to detect current CRM version' , { context : {
8889 xrm : ! ! global . Xrm ,
8990 xrmPage : ! ! ( global . Xrm && global . Xrm . Page ) ,
Original file line number Diff line number Diff line change @@ -6,19 +6,19 @@ exports.config = {
66 specFileRetries : 0 ,
77 maxInstances : 1 ,
88 services : [
9- //['chromedriver', {}]
10- [ 'browserstack' , { } ]
11- ] ,
12- capabilities : [
13- {
14- maxInstances : 1 ,
15- browserName : 'edge' ,
16- browserVersion : 'latest' ,
17- 'bstack:options' : { }
18- }
9+ [ 'chromedriver' , { } ]
10+ //['browserstack', {}]
1911 ] ,
12+ // capabilities: [
13+ // {
14+ // maxInstances: 1,
15+ // browserName: 'edge',
16+ // browserVersion: 'latest',
17+ // 'bstack:options': {}
18+ // }
19+ // ],
2020 // Uncomment the below to specify a specific feature file to run
21- specs : [
22- './features/utilities.feature'
23- ]
21+ // specs: [
22+ // './features/utilities.feature'
23+ // ]
2424} ;
You can’t perform that action at this time.
0 commit comments