Skip to content

Commit 4d5fef8

Browse files
committed
Try skipping preflight simulation
1 parent a676b3f commit 4d5fef8

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

fixtures/basic/tests/basic.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ describe("basic", () => {
1818
it("Is initialized!", async () => {
1919
// Add your test here.
2020
const tx = await program.methods.initialize().rpc({
21-
skipPreflight: false,
21+
skipPreflight: true,
2222
commitment: "finalized",
2323
preflightCommitment: "processed",
2424
maxRetries: 0,

fixtures/external_call/tests/external_call.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ describe("external_call", () => {
1212
it("Is initialized!", async () => {
1313
// Add your test here.
1414
const tx = await program.methods.initialize().rpc({
15-
skipPreflight: false,
15+
skipPreflight: true,
1616
commitment: "finalized",
1717
preflightCommitment: "processed",
1818
maxRetries: 0,

fixtures/multiple_programs/tests/bar.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ describe("bar", () => {
1818
it("Is initialized!", async () => {
1919
// Add your test here.
2020
const tx = await program.methods.initialize().rpc({
21-
skipPreflight: false,
21+
skipPreflight: true,
2222
commitment: "finalized",
2323
preflightCommitment: "processed",
2424
maxRetries: 0,

fixtures/multiple_programs/tests/foo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ describe("foo", () => {
1818
it("Is initialized!", async () => {
1919
// Add your test here.
2020
const tx = await program.methods.initialize().rpc({
21-
skipPreflight: false,
21+
skipPreflight: true,
2222
commitment: "finalized",
2323
preflightCommitment: "processed",
2424
maxRetries: 0,

fixtures/multiple_test_configs/tests/full.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ describe("multiple_test_configs", () => {
1818
it("Is initialized!", async () => {
1919
// Add your test here.
2020
const tx = await program.methods.initialize().rpc({
21-
skipPreflight: false,
21+
skipPreflight: true,
2222
commitment: "finalized",
2323
preflightCommitment: "processed",
2424
maxRetries: 0,

fixtures/multiple_test_configs/tests/just_increment_x.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ describe("multiple_test_configs", () => {
1818
it("Is initialized!", async () => {
1919
// Add your test here.
2020
const tx = await program.methods.initialize().rpc({
21-
skipPreflight: false,
21+
skipPreflight: true,
2222
commitment: "finalized",
2323
preflightCommitment: "processed",
2424
maxRetries: 0,

fixtures/multiple_test_configs/tests/just_increment_y.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ describe("multiple_test_configs", () => {
1818
it("Is initialized!", async () => {
1919
// Add your test here.
2020
const tx = await program.methods.initialize().rpc({
21-
skipPreflight: false,
21+
skipPreflight: true,
2222
commitment: "finalized",
2323
preflightCommitment: "processed",
2424
maxRetries: 0,

0 commit comments

Comments
 (0)