1
0
Fork 0
mirror of https://github.com/mCaptcha/mCaptcha.git synced 2025-02-12 22:49:46 +03:00
mCaptcha/templates/utils/isBlankString.test.ts

37 lines
1.2 KiB
TypeScript
Raw Normal View History

2021-05-06 12:56:53 +05:30
/*
* Copyright (C) 2021 Aravinth Manivannan <realaravinth@batsense.net>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2021-10-08 15:24:29 +05:30
import isBlankString from "./isBlankString";
import {mockAlert} from "../setUpTests";
2021-05-06 12:56:53 +05:30
2021-06-29 23:20:54 +05:30
2021-10-08 15:24:29 +05:30
import setup from "../components/error/setUpTests";
2021-06-29 23:20:54 +05:30
2021-10-08 15:24:29 +05:30
"use strict";
2021-05-06 12:56:53 +05:30
2021-05-06 13:48:28 +05:30
mockAlert();
2021-05-06 12:56:53 +05:30
2021-10-08 15:24:29 +05:30
it("getFromUrl workds", () => {
document.querySelector("body").appendChild(setup());
expect(isBlankString("test", "username")).toBe(false);
2021-05-06 12:56:53 +05:30
try {
2021-10-08 15:24:29 +05:30
isBlankString(" ", "username");
2021-05-06 12:56:53 +05:30
} catch (e) {
2021-10-08 15:24:29 +05:30
expect(e.message).toContain("can't be empty");
2021-05-06 12:56:53 +05:30
}
});