feat: test verification method against test mcaptcha instance
ci/woodpecker/push/woodpecker Pipeline failed Details

This commit is contained in:
Aravinth Manivannan 2024-01-03 01:06:57 +05:30
parent 567bd494e6
commit fe8dbadff4
Signed by: realaravinth
GPG Key ID: F8F50389936984FF
1 changed files with 16 additions and 0 deletions

16
src/index.test.js Normal file
View File

@ -0,0 +1,16 @@
const MCaptcha = require("./index");
require("dotenv").config({ path: ".env.local" });
const assert = require("assert").strict;
describe("test mCaptcha client", async function () {
it("should be able verify authorization token", async function () {
let mcaptcha = new MCaptcha(
process.env.SITEKEY,
process.env.SECRET,
process.env.INSTANCE_URL
);
let res = await mcaptcha.verify(process.env.TOKEN);
console.log(`verification status: ${res}`);
assert.strictEqual(res, true);
});
});