Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added functionality to pass down the header to bot #1848

Merged
merged 14 commits into from
Jan 21, 2024
Prev Previous commit
Fixed typos
  • Loading branch information
Shubham Sharma committed Jan 20, 2024
commit f0ee72d3e69f7e998ca2c37c23c183c7fe767d07
4 changes: 2 additions & 2 deletions test/integration/discordactions.test.js
skv93-coder marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ describe("Discord actions", function () {
expect(res.body).to.be.an("object");
expect(res.body.message).to.equal("Role added successfully!");
});
it("should create reson and pass it down to the bot, on adding the role to the user", async function () {
it("should create a reason and pass it down to the bot, on adding the role to the user", async function () {
fetchStub.returns(
Promise.resolve({
status: 200,
Expand Down Expand Up @@ -326,7 +326,7 @@ describe("Discord actions", function () {
});
});

it("should create reson and pass it down to the bot on deleteing the role", async function () {
it("should create a reason and pass it down to the bot on deleting the role", async function () {
fetchStub.returns(
Promise.resolve({
status: 200,
Expand Down
Loading