Skip to content

Commit

Permalink
chore(test): set print verbosity to false in all Sandbox tests (#795
Browse files Browse the repository at this point in the history
)
  • Loading branch information
Gusarich authored Sep 5, 2024
1 parent 54be872 commit cf57aa0
Show file tree
Hide file tree
Showing 40 changed files with 40 additions and 0 deletions.
1 change: 1 addition & 0 deletions examples/increment.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ describe("increment", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");
contract = blockchain.openContract(await IncrementContract.fromInit());

Expand Down
1 change: 1 addition & 0 deletions examples/multisig-3.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ describe("multisig-3", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");

const key1 = 1n;
Expand Down
1 change: 1 addition & 0 deletions examples/wallet.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ describe("wallet", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");

key = testKey("wallet-key");
Expand Down
1 change: 1 addition & 0 deletions src/benchmarks/benchmarks.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ describe("benchmarks", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("benchmarks");
});

Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/address.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ describe("address", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");
contract = blockchain.openContract(await AddressTester.fromInit());

Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/allocation.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ describe("allocation", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
owner = await blockchain.treasury("owner");

contract = blockchain.openContract(
Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/bounced-routing.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ describe("strings", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");

contract = blockchain.openContract(await SampleContract.fromInit());
Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/constants.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ describe("constants", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");

contract = blockchain.openContract(await ConstantTester.fromInit());
Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/debug.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ describe("debug", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");

contract = blockchain.openContract(await Debug.fromInit());
Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/deep.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ describe("random", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");

contractA = blockchain.openContract(await A.fromInit());
Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/dns.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ describe("dns", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");

contract = blockchain.openContract(await DNSTester.fromInit());
Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/external-fallbacks.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ describe("external fallbacks", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");

contract = blockchain.openContract(
Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/getters.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ describe("getters", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");

contract = blockchain.openContract(await Test.fromInit());
Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/implicit-init.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ describe("implicit-init", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");

contract = blockchain.openContract(await MyContract.fromInit());
Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/init-of-message.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ describe("init-of-message", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");

const msg: InitData = {
Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/initof.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ describe("initOf", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");
});

Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/integer-literals.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ describe("integer-literals", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");

contract = blockchain.openContract(
Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/intrinsics.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ describe("intrinsics", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");

contract = blockchain.openContract(await IntrinsicsTester.fromInit());
Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/local-type-inference.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ describe("local-type-inference", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");

contract = blockchain.openContract(
Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/map-comparison.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ describe("map-comparison", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");

contract = blockchain.openContract(
Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/map-traverse.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ describe("map-traversal", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");

contract = blockchain.openContract(
Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/map.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ describe("map", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");
contract = blockchain.openContract(await MapTestContract.fromInit());
await contract.send(
Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/masterchain.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ describe("masterchain", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");
});

Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/math.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ describe("math", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");

contract = blockchain.openContract(await MathTester.fromInit());
Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/mutating-method-chaining.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ describe("bugs", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");

contract = blockchain.openContract(await Tester.fromInit());
Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/optionals.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ describe("features", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");
});

Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/ordering.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ describe("ordering", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");
});

Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/random.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ describe("random", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");

contract = blockchain.openContract(await RandomContract.fromInit());
Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/receiver-empty.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ describe("receiver-empty", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");

contract = blockchain.openContract(await Test.fromInit());
Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/recursion.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ describe("recursion", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");

contract = blockchain.openContract(await RecursionTester.fromInit());
Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/sample-jetton.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ describe("bugs", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");

contract = blockchain.openContract(
Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/send.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ describe("send", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");

contract = blockchain.openContract(await SendTester.fromInit());
Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/serialization.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ describe("serialization", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");
});

Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/stdlib.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ describe("stdlib", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");

contract = blockchain.openContract(await StdlibTest.fromInit());
Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/strings.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ describe("strings", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");

contract = blockchain.openContract(await StringsTester.fromInit());
Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/structs.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ describe("structs", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");

contract = blockchain.openContract(await StructsTester.fromInit());
Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/ternary.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ describe("ternary", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");

contract = blockchain.openContract(await TernaryTester.fromInit());
Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/traits.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ describe("traits", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");

contract = blockchain.openContract(await LaikaContract.fromInit());
Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/try-catch.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ describe("try-catch", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");

contract = blockchain.openContract(await TryCatchTester.fromInit());
Expand Down
1 change: 1 addition & 0 deletions src/test/e2e-emulated/underscore-variable.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ describe("underscore-variable", () => {

beforeEach(async () => {
blockchain = await Blockchain.create();
blockchain.verbosity.print = false;
treasure = await blockchain.treasury("treasure");

contract = blockchain.openContract(
Expand Down

0 comments on commit cf57aa0

Please sign in to comment.