-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Facilitate devnet
tests on fuel-gauge
suite
#3243
Comments
At the moment, I override fuels-ts/packages/contract/src/test-utils/launch-test-node.ts Lines 132 to 140 in 5194a85
// const { provider, wallets, cleanup } = await setupTestProviderAndWallets({
// walletsConfig,
// providerOptions,
// nodeOptions: {
// ...nodeOptions,
// snapshotConfig,
// args,
// },
// });
const provider = await Provider.create(DEVNET_NETWORK_URL);
const wallet = Wallet.fromPrivateKey('0xOMITTED', provider); // Obviously adding your private key here.
const wallets = [wallet, wallet, wallet, wallet, wallet];
const cleanup = () => {}; Then I run select tests via test:filter. |
I think we need to identify:
|
Similar to what you are doing, but I always run coverage contract test, and the contract factory tests that include blobs. |
Un-assigning myself for now, as I underestimate the work required + my current workload. |
As per discussion with @petertonysmith94 it would be ideal to have an easy way to run the
fuel-gauge
tests againstdevnet
as opposed to just solely withlaunchTestNode
perhaps this could be added to the e2e workflowThe text was updated successfully, but these errors were encountered: