Add test suite.
rodzic
5f237b52bb
commit
6dfa738548
|
@ -0,0 +1,19 @@
|
||||||
|
import { flatten, float } from "./util";
|
||||||
|
|
||||||
|
describe("float", () => {
|
||||||
|
it("converts strings", () => {
|
||||||
|
expect(float("1.0")).toBe(1.0);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("returns numbers as-is", () => {
|
||||||
|
expect(float(1.0)).toBe(1.0);
|
||||||
|
});
|
||||||
|
|
||||||
|
it("throws errors on NaN", () => {
|
||||||
|
expect(() => float("LOL")).toThrow("Expected 'LOL' to be a float!");
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
test("flatten() works", () => {
|
||||||
|
expect(flatten([[1], [2, 3], [4]])).toEqual([1, 2, 3, 4]);
|
||||||
|
});
|
Plik diff jest za duży
Load Diff
|
@ -6,6 +6,8 @@
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"deploy": "npm run build && gh-pages -d dist",
|
"deploy": "npm run build && gh-pages -d dist",
|
||||||
"typecheck": "tsc --noemit",
|
"typecheck": "tsc --noemit",
|
||||||
|
"test:watch": "jest --watch",
|
||||||
|
"test": "jest",
|
||||||
"build": "node build-vocabulary.js && rm -rf dist && parcel build index.html -d dist --public-url .",
|
"build": "node build-vocabulary.js && rm -rf dist && parcel build index.html -d dist --public-url .",
|
||||||
"watch": "node build-vocabulary.js && parcel index.html -d dist-watch"
|
"watch": "node build-vocabulary.js && parcel index.html -d dist-watch"
|
||||||
},
|
},
|
||||||
|
@ -17,11 +19,14 @@
|
||||||
"@babel/preset-typescript": "^7.12.7",
|
"@babel/preset-typescript": "^7.12.7",
|
||||||
"@babel/register": "^7.12.10",
|
"@babel/register": "^7.12.10",
|
||||||
"@types/cheerio": "^0.22.23",
|
"@types/cheerio": "^0.22.23",
|
||||||
|
"@types/jest": "^26.0.20",
|
||||||
"@types/node": "^14.14.22",
|
"@types/node": "^14.14.22",
|
||||||
"@types/react": "^17.0.1",
|
"@types/react": "^17.0.1",
|
||||||
"@types/react-dom": "^17.0.0",
|
"@types/react-dom": "^17.0.0",
|
||||||
|
"babel-jest": "^26.6.3",
|
||||||
"cheerio": "^1.0.0-rc.5",
|
"cheerio": "^1.0.0-rc.5",
|
||||||
"gh-pages": "^3.1.0",
|
"gh-pages": "^3.1.0",
|
||||||
|
"jest": "^26.6.3",
|
||||||
"parcel-bundler": "^1.12.4",
|
"parcel-bundler": "^1.12.4",
|
||||||
"prettier": "^2.2.1",
|
"prettier": "^2.2.1",
|
||||||
"react": "^17.0.1",
|
"react": "^17.0.1",
|
||||||
|
|
Ładowanie…
Reference in New Issue