Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/desktop/src-tauri/src/bin/codevetter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4344,5 +4344,5 @@ fn render_human_performance(receipt: &PerformanceRunReceipt) -> String {
}

#[cfg(test)]
#[path = "codevetter_tests.rs"]
#[path = "../codevetter_cli_tests.rs"]
mod tests;
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ use codevetter_desktop::commands::trex_preview::{
};

const SURFACE_PARITY_FIXTURE: &str =
include_str!("../../tests/fixtures/surface-parity/evidence-scope-v1.json");
include_str!("../tests/fixtures/surface-parity/evidence-scope-v1.json");
const LOCAL_CHECK_PARITY_FIXTURE: &str =
include_str!("../../tests/fixtures/surface-parity/local-check-v1.json");
include_str!("../tests/fixtures/surface-parity/local-check-v1.json");

fn surface_parity_fixture() -> serde_json::Value {
serde_json::from_str(SURFACE_PARITY_FIXTURE).expect("surface parity fixture")
Expand Down Expand Up @@ -1857,7 +1857,7 @@ fn collect_parser_requires_a_range_and_explicit_supported_collectors() {
#[test]
fn output_and_exit_codes_preserve_receipt_meaning() {
let config: serde_json::Value =
serde_json::from_str(include_str!("../../tauri.conf.json")).expect("Tauri config");
serde_json::from_str(include_str!("../tauri.conf.json")).expect("Tauri config");
assert_eq!(
app_version(),
config["version"].as_str().expect("app version")
Expand Down
Loading