* Adding more tests * adding jest * fixing tests * fixing linting * removing 1 slash less * fixing more tests * fixing last test * more last fixes
18 lines
411 B
TypeScript
18 lines
411 B
TypeScript
import { Files } from "./utillity";
|
|
|
|
describe("Files", function () {
|
|
it("Root", function () {
|
|
const temp = Files.RootFolder();
|
|
|
|
expect(temp.endsWith("lib")).toBeFalsy();
|
|
expect(temp.endsWith("lib\\test")).toBeFalsy();
|
|
expect(temp.endsWith("lib/test")).toBeFalsy();
|
|
});
|
|
|
|
it("Test", function () {
|
|
const temp = Files.TestFolder();
|
|
|
|
expect(temp.endsWith("lib")).toBeFalsy();
|
|
});
|
|
});
|