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 11, 2024
1 parent 8da5e5f commit 633684a
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 0 deletions.
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.

1 change: 1 addition & 0 deletions roles/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ members = [
"translator",
"jd-client",
"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]

[lib]
path = "tests/common/mod.rs"
1 change: 1 addition & 0 deletions roles/tests-integration/tests/common/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

0 comments on commit 633684a

Please sign in to comment.