github-pages-deploy-action/__tests__/util.test.ts
James Ives d17161afee
[Issue-133] Customizable Commit Messages (#134)
* Customizable Commit Messages

* Removes lodash

* Update package.json

* README

* Changes

* Check for null

* Adds a dash
2020-01-18 14:41:49 -05:00

21 lines
600 B
TypeScript

import { isNullOrUndefined } from "../src/util";
describe("util", () => {
describe("isNullOrUndefined", () => {
it("should return true if the value is null", async () => {
const value = null;
expect(isNullOrUndefined(value)).toBeTruthy();
});
it("should return true if the value is undefined", async () => {
const value = undefined;
expect(isNullOrUndefined(value)).toBeTruthy();
});
it("should return false if the value is defined", async () => {
const value = "montezuma";
expect(isNullOrUndefined(value)).toBeFalsy();
});
});
});