Browse Source

Fix tests (#5)

* fix filename

* ci test

* testing

* testing

* testing

* testing

* testing

* testing

* testing

* testing

* testing

* testing

* remove wflw

* -
master
Shahar Yakir 2 years ago committed by GitHub
parent
commit
712e55e54e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      build/.gitignore
  2. 2
      test/counter.spec.ts
  3. 2
      test/deposit.spec.ts
  4. 2
      test/ownership.spec.ts

2
build/.gitignore vendored

@ -1,4 +1,4 @@
*.fif *.fif
*.fc *.fc
*.cell *.cell
*-bitcode.json *.compiled.json

2
test/counter.spec.ts

@ -8,7 +8,7 @@ import { SmartContract } from "ton-contract-executor";
import * as main from "../contracts/main"; import * as main from "../contracts/main";
import { internalMessage, randomAddress } from "./helpers"; import { internalMessage, randomAddress } from "./helpers";
import { hex } from "../build/main-bitcode.json"; import { hex } from "../build/main.compiled.json";
describe("Counter tests", () => { describe("Counter tests", () => {
let contract: SmartContract; let contract: SmartContract;

2
test/deposit.spec.ts

@ -8,7 +8,7 @@ import { SmartContract } from "ton-contract-executor";
import * as main from "../contracts/main"; import * as main from "../contracts/main";
import { internalMessage, randomAddress, setBalance } from "./helpers"; import { internalMessage, randomAddress, setBalance } from "./helpers";
import { hex } from "../build/main-bitcode.json"; import { hex } from "../build/main.compiled.json";
describe("Deposit and withdraw tests", () => { describe("Deposit and withdraw tests", () => {
let contract: SmartContract; let contract: SmartContract;

2
test/ownership.spec.ts

@ -8,7 +8,7 @@ import { SmartContract } from "ton-contract-executor";
import * as main from "../contracts/main"; import * as main from "../contracts/main";
import { internalMessage, randomAddress } from "./helpers"; import { internalMessage, randomAddress } from "./helpers";
import { hex } from "../build/main-bitcode.json"; import { hex } from "../build/main.compiled.json";
describe("Transfer ownership tests", () => { describe("Transfer ownership tests", () => {
let contract: SmartContract; let contract: SmartContract;

Loading…
Cancel
Save