mirror of
https://github.com/Myriad-Dreamin/tinymist.git
synced 2025-08-04 10:18:16 +00:00
chore: fix test scripts and update test documents (#178)
* chore: fix test scripts and update test documents * docs: redirect developer who want to build and test to the contributing guide * dev: change wording
This commit is contained in:
parent
da70c0d31c
commit
59ca5bdabc
6 changed files with 45 additions and 2 deletions
|
@ -1,4 +1,8 @@
|
|||
|
||||
$InstallPath = ".\editors\vscode\out"
|
||||
if (-Not (Test-Path $InstallPath)) {
|
||||
New-Item -ItemType Directory $InstallPath
|
||||
}
|
||||
|
||||
cargo build --release --bin tinymist
|
||||
Copy-Item -Path ".\target\release\tinymist.exe" -Destination ".\editors\vscode\out\tinymist.exe" -Force
|
||||
Copy-Item -Path ".\target\release\tinymist.exe" -Destination "$InstallPath\tinymist.exe" -Force
|
||||
cargo insta test -p tests --accept
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
mkdir -p editors/vscode/out/
|
||||
cargo build --release --bin tinymist
|
||||
cp target/release/tinymist editors/vscode/out/tinymist
|
||||
cargo insta test -p tests --accept
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue