File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -72,6 +72,12 @@ describe('Deep linking', () => {
7272 cy . visit ( '/me/secrets' )
7373 cy . location ( 'pathname' ) . should ( 'eq' , `/orgs/${ org . id } /settings/secrets` )
7474
75+ cy . visit ( '/me/setup-arduino' )
76+ cy . location ( 'pathname' ) . should (
77+ 'eq' ,
78+ `/orgs/${ org . id } /new-user-setup/arduino`
79+ )
80+
7581 cy . visit ( '/me/setup-cli' )
7682 cy . location ( 'pathname' ) . should ( 'eq' , `/orgs/${ org . id } /new-user-setup/cli` )
7783
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ export const buildDeepLinkingMap = (org: Organization) => ({
2222 '/me/profile' : `/orgs/${ org . id } /user/profile` ,
2323 '/me/pythonclient' : `/orgs/${ org . id } /load-data/client-libraries/python` ,
2424 '/me/secrets' : `/orgs/${ org . id } /settings/secrets` ,
25+ '/me/setup-arduino' : `/orgs/${ org . id } /new-user-setup/arduino` ,
2526 '/me/setup-cli' : `/orgs/${ org . id } /new-user-setup/cli` ,
2627 '/me/setup-golang' : `/orgs/${ org . id } /new-user-setup/golang` ,
2728 '/me/setup-nodejs' : `/orgs/${ org . id } /new-user-setup/nodejs` ,
You can’t perform that action at this time.
0 commit comments