Skip to content

Commit

Permalink
Updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
DariuszDepta committed Aug 28, 2024
1 parent d7da37a commit b34cd6e
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/cw-multi-test/getting-started/smart-contract.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
tags: ["multitest", "smart contract", "example"]
tags: ["multitest", "smart contract"]
---

import { Callout } from "nextra/components";
Expand Down
35 changes: 35 additions & 0 deletions src/pages/cw-multi-test/getting-started/writing-tests.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,39 @@
tags: ["multitest", "writing tests"]
---

import { Tabs } from "nextra/components";

# Writing tests

<Tabs items={['CosmWasm','Sylvia']}>

<Tabs.Tab>
```toml filename="Cargo.toml" copy
[package]
name = "counter"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[lib] crate-type = ["cdylib", "rlib"]

[features]

# use library feature to disable all instantiate/execute/query exports

library = []

[dependencies] cosmwasm-schema = "2" cosmwasm-std = { version = "2" } cw-storage-plus = "2" schemars
= "0.8" serde = "1.0"

[dev-dependencies] cw-multi-test = { version = "2", features = ["cosmwasm_2_0"] }

```
</Tabs.Tab>

<Tabs.Tab>
</Tabs.Tab>

</Tabs>
```

0 comments on commit b34cd6e

Please sign in to comment.