Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/api/src/transfer/transfer.service.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ describe("TransferService", () => {
});
});

it("searchs for specific transfers when visibleBy is defined", async () => {
it("searches for specific transfers when visibleBy is defined", async () => {
const filterOptions = {
address: "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266",
visibleBy: "0x70997970C51812dc3A010C7d01b50e0d17dc79C8",
Expand Down
2 changes: 1 addition & 1 deletion packages/app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,4 @@ GitHub Actions test results are available in:
- Inside of each test run in the log: `Feature on Mainnet + Sepolia` --> `@search` --> `Upload test results to Allure reporter` --> `https://raw.githack.com/matter-labs/block-explorer/gh-pages/_github.run_number_/index.html`
- Directly via a link `https://raw.githack.com/matter-labs/block-explorer/gh-pages/_github.run_number_/index.html` after each PR running. The history of test runs for public view locates in `gh-pages` branch.

In case of 404 page, make sure that the folder with its `github.run_number` exists in the `gh-pages`. If the folder exist, try again in a few minutes as `https://raw.githack.com` needs to update the data. Public report link will be available when the 'Allure Report' job will be succesfully executed.
In case of 404 page, make sure that the folder with its `github.run_number` exists in the `gh-pages`. If the folder exist, try again in a few minutes as `https://raw.githack.com` needs to update the data. Public report link will be available when the 'Allure Report' job will be successfully executed.
2 changes: 1 addition & 1 deletion packages/app/tests/composables/useContext.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import * as useEnvironmentConfig from "@/composables/useEnvironmentConfig";
import { DEFAULT_NETWORK } from "@/composables/useRuntimeConfig";

describe("useContext:", () => {
describe("correctly indentifies network:", () => {
describe("correctly identifies network:", () => {
afterEach(() => {
location = {
origin: "",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ describe("CounterRepository", () => {
});

describe("incrementCounters", () => {
it("executes insert or increment query on on each record", async () => {
it("executes insert or increment query on each record", async () => {
const records = [
{
tableName: "transactions",
Expand Down