File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
site/src/modules/dashboard/Navbar Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ type Story = StoryObj<typeof NavbarView>;
26
26
export const ForAdmin : Story = {
27
27
play : async ( { canvasElement } ) => {
28
28
const canvas = within ( canvasElement ) ;
29
- await userEvent . click ( canvas . getByRole ( "button" , { name : "Deployment " } ) ) ;
29
+ await userEvent . click ( canvas . getByRole ( "button" , { name : "Manage " } ) ) ;
30
30
} ,
31
31
} ;
32
32
@@ -41,7 +41,7 @@ export const ForAuditor: Story = {
41
41
} ,
42
42
play : async ( { canvasElement } ) => {
43
43
const canvas = within ( canvasElement ) ;
44
- await userEvent . click ( canvas . getByRole ( "button" , { name : "Deployment " } ) ) ;
44
+ await userEvent . click ( canvas . getByRole ( "button" , { name : "Manage " } ) ) ;
45
45
} ,
46
46
} ;
47
47
@@ -56,7 +56,7 @@ export const ForOrgAdmin: Story = {
56
56
} ,
57
57
play : async ( { canvasElement } ) => {
58
58
const canvas = within ( canvasElement ) ;
59
- await userEvent . click ( canvas . getByRole ( "button" , { name : "Deployment " } ) ) ;
59
+ await userEvent . click ( canvas . getByRole ( "button" , { name : "Manage " } ) ) ;
60
60
} ,
61
61
} ;
62
62
You can’t perform that action at this time.
0 commit comments