Formatting

This commit is contained in:
luke-hagar-sp
2022-07-26 08:18:30 -05:00
parent 30781c659f
commit 4a6e35529e
4 changed files with 5 additions and 3 deletions

12
test/index.test.js Normal file
View File

@@ -0,0 +1,12 @@
import { PlexAPIOAuth, PlexLogin } from "./index.mjs";
import { strict as assert } from "assert";
describe("Login Test", function () {
let plexapioauth = new PlexAPIOAuth();
it("should be able to fail login", function () {
console.log(plexapioauth);
plexapioauth.generateClientId();
console.log(plexapioauth);
assert.strictEqual(PlexLogin(plexapioauth.plexClientInformation), null);
});
});