mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 09:31:41 -05:00
Fix echo on OSX, maybe
This commit is contained in:
parent
1b0a3a4d24
commit
3fe62b1be0
1 changed files with 1 additions and 1 deletions
|
@ -152,7 +152,7 @@ describe("webdriver", () => {
|
|||
if (os.platform() == "win32") {
|
||||
await sendKeys(driver, `:set editorcmd echo | set /p text="${addedText}" >> %f<CR>`)
|
||||
} else {
|
||||
await sendKeys(driver, `:set editorcmd echo -n '${addedText}' >> %f<CR>`)
|
||||
await sendKeys(driver, `:set editorcmd /bin/echo -n '${addedText}' >> %f<CR>`)
|
||||
}
|
||||
|
||||
const areaId = "editorTest"
|
||||
|
|
Loading…
Add table
Reference in a new issue