We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbb49fb commit cec7c97Copy full SHA for cec7c97
packages/matchstick/src/integration_tests.rs
@@ -10,9 +10,8 @@ mod tests {
10
#[test]
11
#[serial]
12
fn run_all_gravity_demo_subgraph_tests() {
13
- SCHEMA_LOCATION.with(|path| *path.borrow_mut() = PathBuf::from("./mocks/schema.graphql"));
14
- MANIFEST_LOCATION
15
- .with(|path| *path.borrow_mut() = PathBuf::from("./mocks/yamls/subgraph.yaml"));
+ SCHEMA_LOCATION.with(|path| *path.borrow_mut() = PathBuf::from("mocks/schema.graphql"));
+ MANIFEST_LOCATION.with(|path| *path.borrow_mut() = PathBuf::from("mocks/yamls/subgraph.yaml"));
16
17
let module = <MatchstickInstance<Chain>>::new("mocks/wasm/gravity.wasm");
18
let test_suite = TestGroup::from(&module);
0 commit comments