Skip to content

Commit

Permalink
Add integration tests project
Browse files Browse the repository at this point in the history
Adds an initial integration tests project to the `roles` workspace.

This crate should hold tests related to the other crates in the `roles`
workspace, allowing us to write integration tests for those.
  • Loading branch information
jbesraa committed Sep 4, 2024
1 parent aba4182 commit fb554bc
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 1 deletion.
4 changes: 4 additions & 0 deletions roles/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion roles/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ members = [
"test-utils/sv1-mining-device",
"translator",
"jd-client",
"jd-server",
"jd-server", "tests-integration",
]

[profile.dev]
Expand Down
9 changes: 9 additions & 0 deletions roles/tests-integration/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[package]
name = "integration-test"
version = "0.1.0"
edition = "2021"

[dependencies]

[[bin]]
name = "run"
1 change: 1 addition & 0 deletions roles/tests-integration/src/bin/run.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fn main() {}
Empty file.

0 comments on commit fb554bc

Please sign in to comment.