Adrian Woźniak
08a5987a4a
* Make render testable * Add some tests * Format code * Fix render caret after input * Add kcov scripts * Fix caret position * Test move caret * Test move caret * Test move caret * Additional tests * Additional token to color test
7 lines
200 B
Bash
Executable File
7 lines
200 B
Bash
Executable File
#!/bin/env bash
|
|
|
|
rm -Rf cov
|
|
rm -Rf target/debug/*rider*
|
|
cargo test --no-run;kcov --exclude-pattern=github.com,target/debug --verify cov $(ls target/debug/rider_editor* | sed "s/\\.d\$//" | head -n1)
|
|
|