Skip to content

Commit

Permalink
Merge pull request #19 from FernandVEYRIER/feat/testing
Browse files Browse the repository at this point in the history
  • Loading branch information
0x4007 authored Feb 28, 2024
2 parents 268c566 + 3863ece commit b856343
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions cypress/e2e/devpool.cy.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
import { RestEndpointMethodTypes } from "@octokit/rest";
import { OAuthToken } from "../../src/home/getters/get-github-access-token";

describe("DevPool", () => {
let issue1: Record<string, unknown>;
let issue2: Record<string, unknown>;
let loginToken: Record<string, unknown>;
let githubUser: Record<string, unknown>;
let issue1: RestEndpointMethodTypes["issues"]["get"]["response"]["data"];
let issue2: RestEndpointMethodTypes["issues"]["get"]["response"]["data"];
let loginToken: OAuthToken;
let githubUser: RestEndpointMethodTypes["users"]["getByUsername"]["response"]["data"];

before(() => {
cy.fixture("issue-1.json").then((content) => {
issue1 = content;
Expand Down

0 comments on commit b856343

Please sign in to comment.