Skip to content

Commit

Permalink
test: fix a new line typos
Browse files Browse the repository at this point in the history
  • Loading branch information
pcheremu committed Aug 22, 2024
1 parent 053bff1 commit 11e02cc
Show file tree
Hide file tree
Showing 13 changed files with 46 additions and 47 deletions.
1 change: 0 additions & 1 deletion .github/workflows/app-deploy-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,3 @@ jobs:
default_network_value_for_e2e: "/?network=mainnet"
publish_to_allure: true
environmentTags: "and not @featureEnv"

3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
"typescript.tsdk": "node_modules/typescript/lib"
"typescript.tsdk": "node_modules/typescript/lib",
"editor.tabSize": 2
}
69 changes: 34 additions & 35 deletions packages/app/tests/e2e/testId.json
Original file line number Diff line number Diff line change
@@ -1,36 +1,35 @@
{
"badge": "badge",
"statusBadge": "status-badge",
"blocksNumber": "blocks-number",
"blocksTable": "blocks-table",
"byteCodeDropDown": "bytecode-dropdown",
"contractsAddress": "contracts-address",
"contractVerificationButton": "contract-verification-button",
"direction": "direction",
"initiatorsAddress": "initiators-address",
"fromAddress": "from-address",
"optimizationRadioButtons": "radio-buttons",
"pageTitle": "page-title",
"previousInstructionButton": "previous-instruction-navigation-button",
"showInstructionMetadataButton": "show-instruction-metadata-button",
"nextInstructionButton": "next-instruction-navigation-button",
"traceSearchInput": "trace-search-input",
"tokensIcon": "tokens-icon",
"tokenAddress":"tokenAddress",
"tokenAmount":"token-amount",
"tokenAmountPrice":"token-amount-price",
"transactionsHash": "transactions-hash",
"transactionsMethodName": "transactions-method-name",
"timestamp": "timestamp",
"transactionsTable": "transactions-table",
"latestTransactionsTable": "latest-transaction-table",
"latestBatchesTable": "latest-batches-table",
"tokensTable": "tokens-table",
"toAddress": "to-address",
"transferType": "transfer-type",
"transferFromOrigin": "transfer-from-origin",
"transferToOrigin": "transfer-to-origin",
"transferFromOriginTablet": "transfer-from-origin-tablet",
"transferToOriginTablet": "transfer-to-origin-tablet"
}

"badge": "badge",
"statusBadge": "status-badge",
"blocksNumber": "blocks-number",
"blocksTable": "blocks-table",
"byteCodeDropDown": "bytecode-dropdown",
"contractsAddress": "contracts-address",
"contractVerificationButton": "contract-verification-button",
"direction": "direction",
"initiatorsAddress": "initiators-address",
"fromAddress": "from-address",
"optimizationRadioButtons": "radio-buttons",
"pageTitle": "page-title",
"previousInstructionButton": "previous-instruction-navigation-button",
"showInstructionMetadataButton": "show-instruction-metadata-button",
"nextInstructionButton": "next-instruction-navigation-button",
"traceSearchInput": "trace-search-input",
"tokensIcon": "tokens-icon",
"tokenAddress":"tokenAddress",
"tokenAmount":"token-amount",
"tokenAmountPrice":"token-amount-price",
"transactionsHash": "transactions-hash",
"transactionsMethodName": "transactions-method-name",
"timestamp": "timestamp",
"transactionsTable": "transactions-table",
"latestTransactionsTable": "latest-transaction-table",
"latestBatchesTable": "latest-batches-table",
"tokensTable": "tokens-table",
"toAddress": "to-address",
"transferType": "transfer-type",
"transferFromOrigin": "transfer-from-origin",
"transferToOrigin": "transfer-to-origin",
"transferFromOriginTablet": "transfer-from-origin-tablet",
"transferToOriginTablet": "transfer-to-origin-tablet"
}
2 changes: 1 addition & 1 deletion packages/integration-tests/.env.example
Original file line number Diff line number Diff line change
@@ -1 +1 @@
WALLET_PRIVATE_KEY=
WALLET_PRIVATE_KEY=
2 changes: 1 addition & 1 deletion packages/integration-tests/jest.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
},
"reporters": ["default"],
"maxWorkers": 1
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ contract GCaller {
function newCallGreeter() external view returns (string memory) {
return IGreeter2(callAddress).callGreeter();
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ contract Greeter {

emit SetGreeting(_greeting);
}
}
}
2 changes: 1 addition & 1 deletion packages/integration-tests/src/playbook/contracts/L1.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ contract L1 is ERC20 {
constructor(address _recipient) public ERC20("L1 ERC20 token", "L1") {
_mint(_recipient, _initial_supply);
}
}
}
2 changes: 1 addition & 1 deletion packages/integration-tests/src/playbook/contracts/L2.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ contract L2 is ERC20 {
constructor() ERC20("L2 ERC20 token", "L2") {
_mint(msg.sender, _initial_supply);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ contract Middle {
function callGreeter() external view returns (string memory) {
return IGreeter(myAddress).greet();
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ contract MyERC20 is ERC20 {
function decimals() public view override returns (uint8) {
return _decimals;
}
}
}
2 changes: 1 addition & 1 deletion packages/integration-tests/src/playbook/contracts/Root.sol
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ contract Root {

emit SetGreeting(_greeting);
}
}
}
2 changes: 1 addition & 1 deletion packages/integration-tests/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false
}
}
}

0 comments on commit 11e02cc

Please sign in to comment.