You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
362 B
TypeScript

import { describe, it, expect } from "vitest";
import { buildTonalnost } from "./buildTonalnost.ts";
describe("buildTonalnost", () => {
let sortedArray = [-12, 1, 4, 6, 22];
it("buildTonalnost", () => {
expect(buildTonalnost(sortedArray, 4)).toBe(2);
});
it("buildTonalnost", () => {
expect(buildTonalnost(sortedArray, 3)).toBe(-1);
});
});