Skip to content

Commit

Permalink
feat: bypass e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
0xkenj1 committed Aug 16, 2024
1 parent b99682e commit 2777ad8
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions apps/api/test/e2e/metrics.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ describe("MetricsController (e2e)", () => {
// afterEach(async () => {
// await app.close();
// });
// describe("/ecosystem (GET)", () => {
// it("/ecosystem (GET)", () => {
// return request(app.getHttpServer())
// .get("/metrics/ecosystem")
// .expect(200)
// .expect(({ body }) => {
// expect(body.l1Tvl).toBeDefined();
// expect(body.ethGasInfo).toBeDefined();
// expect(body.zkChains).toBeDefined();
// expect(body.zkChains.length).toBeGreaterThan(0);
// });
// });
// });
describe("/ecosystem (GET)", () => {
it("/ecosystem (GET)", () => {
// return request(app.getHttpServer())
// .get("/metrics/ecosystem")
// .expect(200)
// .expect(({ body }) => {
// expect(body.l1Tvl).toBeDefined();
// expect(body.ethGasInfo).toBeDefined();
// expect(body.zkChains).toBeDefined();
// expect(body.zkChains.length).toBeGreaterThan(0);
// });
});
});
// describe("/chain/:chainId (GET)", () => {
// it("correct request for RPC + METADATA", () => {
// return request(app.getHttpServer())
Expand Down

0 comments on commit 2777ad8

Please sign in to comment.