Skip to content

Commit

Permalink
ci: apply fixes for new configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
sinkaroid committed Jul 17, 2022
1 parent a7458f4 commit d0b039c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/api.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const Disgrow = require("disgrow");
const { bot_id } = require("../src/config");
const { botId } = require("../config");

const bot = new Disgrow(bot_id);
const bot = new Disgrow(botId);
bot.myStats().then((res) => { console.log("myStats", res); });
4 changes: 2 additions & 2 deletions test/mocha.test.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* eslint-disable no-undef */
const Disgrow = require("disgrow");
const { bot_id } = require("../src/config");
const { botId } = require("../config");
const chai = require("chai");
const bot = new Disgrow(bot_id);
const bot = new Disgrow(botId);
const expect = chai.expect;

describe("Check the prerequisites", () => {
Expand Down

1 comment on commit d0b039c

@vercel
Copy link

@vercel vercel bot commented on d0b039c Jul 17, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.