Skip to content

Commit

Permalink
Fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
guillemcordoba committed Sep 29, 2021
1 parent b605686 commit c566648
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

4 changes: 4 additions & 0 deletions dna/tests/src/chess.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ export default function (config) {
async (s: ScenarioApi, t) => {
const [conductor] = await s.players([config]);

conductor.setSignalHandler((signal) => {
console.log("Player has received Signal:", signal.data.payload.payload);
});

const [alice_happ, bobby_happ] = await installAgents(
conductor,
["alice", "bob"],
Expand Down
2 changes: 1 addition & 1 deletion dna/tests/src/install.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export const MEM_PROOF2 = Buffer.from(

export const MEM_PROOF_READ_ONLY = Buffer.from([0]);

const chessDna = path.join("../workdir/dna/elemental-chess.dna");
const chessDna = path.join("../workdir/elemental-chess.dna");

export const installAgents = async (
conductor,
Expand Down
2 changes: 1 addition & 1 deletion dna/zomes/invitations/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ crate-type = ["cdylib", "rlib"]
name = "invitations"

[dependencies]
hc_zome_invitations = {git = "https://github.com/eyss/invitations", rev = "bbd0ee967f3ff5259f27e29b505ee8cda297b370"}
hc_zome_invitations = {git = "https://github.com/eyss/invitations", rev = "ffcc105ad695ae3f78e8c973a1145d9dbd5c3a4a"}
2 changes: 1 addition & 1 deletion dna/zomes/profiles/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ name = "profiles"
crate-type = [ "cdylib", "rlib" ]

[dependencies]
hc_zome_profiles = {git = "https://github.com/holochain-open-dev/profiles", rev = "9c24763e26dac761f96e2420e05441aa577c211a"}
hc_zome_profiles = {git = "https://github.com/holochain-open-dev/profiles", rev = "968bb4e31efd45147b724d30596b9326ce364818"}

0 comments on commit c566648

Please sign in to comment.