Skip to content

Commit

Permalink
feat: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
himanshu-dixit committed Feb 21, 2025
1 parent bcbfd1b commit f751574
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/src/sdk/models/actions.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ import { ConnectedAccounts } from "./connectedAccounts";
describe("Actions class tests", () => {
let backendClient;
let actions: Actions;
let connectedAccouns: ConnectedAccounts;
let connectedAccounts: ConnectedAccounts;

beforeAll(() => {
backendClient = getBackendClient();
actions = new Actions(backendClient);
connectedAccouns = new ConnectedAccounts(backendClient);
connectedAccounts = new ConnectedAccounts(backendClient);
});

it("should get a specific action", async () => {
Expand All @@ -36,7 +36,7 @@ describe("Actions class tests", () => {

it("should execute an action with a connected account for GitHub", async () => {
const actionName = "GITHUB_GITHUB_API_ROOT".toLowerCase();
const connectedAccountsResult = await connectedAccouns.list({
const connectedAccountsResult = await connectedAccounts.list({
appNames: "github",
status: "ACTIVE",
});
Expand Down

0 comments on commit f751574

Please sign in to comment.