File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ describe('App', () => {
165165 `DVC & DVCLive can be auto-installed as packages with ${ defaultInterpreter } `
166166 )
167167 ) . toBeInTheDocument ( )
168- expect ( screen . getByText ( 'Install' ) ) . toBeInTheDocument ( )
168+ expect ( screen . getByText ( 'Install (pip) ' ) ) . toBeInTheDocument ( )
169169 } )
170170
171171 it ( 'should let the user find another Python interpreter to install DVC when the Python extension is not installed' , ( ) => {
@@ -215,7 +215,7 @@ describe('App', () => {
215215 pythonBinPath : 'python'
216216 } )
217217
218- const button = screen . getByText ( 'Install' )
218+ const button = screen . getByText ( 'Install (pip) ' )
219219 fireEvent . click ( button )
220220
221221 expect ( mockPostMessage ) . toHaveBeenCalledWith ( {
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ export const CliUnavailable: React.FC<PropsWithChildren> = ({ children }) => {
1818 DVC & DVCLive can be auto - installed as packages with { pythonBinPath }
1919 </p >
2020 < div className = { styles . sideBySideButtons } >
21- < Button onClick = { installDvc } text = "Install" />
21+ < Button onClick = { installDvc } text = "Install (pip) " />
2222 < Button onClick = { setupWorkspace } text = "Configure" />
2323 </ div >
2424 < / >
Original file line number Diff line number Diff line change @@ -98,8 +98,8 @@ CompletedConnected.args = getUpdatedArgs({
9898 shareLiveToStudio : true
9999} )
100100
101- export const NoCLIPythonNotFound = Template . bind ( { } )
102- NoCLIPythonNotFound . args = getUpdatedArgs ( {
101+ export const CLIPythonNotFound = Template . bind ( { } )
102+ CLIPythonNotFound . args = getUpdatedArgs ( {
103103 cliCompatible : undefined ,
104104 dvcCliDetails : {
105105 command : 'dvc' ,
@@ -109,8 +109,8 @@ NoCLIPythonNotFound.args = getUpdatedArgs({
109109 pythonBinPath : undefined
110110} )
111111
112- export const NoCLIPythonFound = Template . bind ( { } )
113- NoCLIPythonFound . args = getUpdatedArgs ( {
112+ export const CLIPythonFound = Template . bind ( { } )
113+ CLIPythonFound . args = getUpdatedArgs ( {
114114 cliCompatible : undefined ,
115115 dvcCliDetails : {
116116 command : '/opt/homebrew/Caskroom/miniforge/base/bin/python -m dvc' ,
You can’t perform that action at this time.
0 commit comments