combine.fm/test/lookup.js
Jonathan Cremin 4dfd6e93b2
All checks were successful
ci / build-image (push) Successful in 59s
ci / test-image (push) Successful in 8s
Add tests to action
2025-06-12 21:21:33 +01:00

11 lines
305 B
JavaScript

import "should";
import lookup from "../lib/lookup.js";
describe("Search with url", function() {
it("should find album by url", async function() {
const result = await lookup(
"https://open.spotify.com/album/5TbRo1rBrhgHSTB4i2wdZS"
);
result.name.should.equal("Atom Bomb");
});
});