You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: Improved test command and added file syncing (#56)
* WIP: fixed the test command and added a promptSecret to collect the user's password initially
* fix: Selectively sync either /usr/local/lib/codify or ~/.local/share/codify
* Undo un-needed changes
* feat: Added a block for non-mac os systems
// Run this in the background. The user will have to manually exit the GUI to stop the test.
40
-
spawnSafe(`tart run ${vmName}`,{interactive: true})
53
+
// We bind mount the codify installation and the codify config directory. We choose not use :ro (read-only) because live changes are not supported in read-only mode.
54
+
spawnSafe(`tart run ${vmName} --dir=codify-lib:${codifyInstall}:ro --dir=codify-config:${path.dirname(initializationResult.project.codifyFiles[0])}:ro`,{interactive: true})
Copy file name to clipboardExpand all lines: src/ui/reporters/default-reporter.tsx
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ const ProgressLabelMapping = {
38
38
[SubProcessName.TEST_INITIALIZE_AND_VALIDATE]: 'Initializing and validating your configs',
39
39
[SubProcessName.TEST_CHECKING_VM_INSTALLED]: 'Checking if VM is installed',
40
40
[SubProcessName.TEST_STARTING_VM]: 'Starting VM',
41
-
[SubProcessName.TEST_COPYING_OVER_CONFIGS_AND_OPENING_TERMINAL]: 'Copying over configs and opening terminal',
41
+
[SubProcessName.TEST_COPYING_OVER_CONFIGS_AND_OPENING_TERMINAL]: 'Copying over configs and opening terminal (if a confirmation dialog appears within the VM, please confirm it.)',
42
42
[SubProcessName.TEST_USER_CONTINUE_ON_VM]: 'Done setup! Please continue on the VM UI',
0 commit comments