mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-27 08:50:56 +01:00
* chore: add initial db migration * test: add unit tests for packages auth, common, widgets * fix: deep source issues * fix: format issues * wip: add unit tests for api routers * fix: deep source issues * test: add missing unit tests for integration router * wip: board tests * test: add unit tests for board router * fix: remove unnecessary null assertions * fix: deepsource issues * fix: formatting * fix: pnpm lock * fix: lint and typecheck issues * chore: address pull request feedback * fix: non-null assertions * fix: lockfile broken
15 lines
467 B
TypeScript
15 lines
467 B
TypeScript
import { describe, expect, it } from "vitest";
|
|
|
|
import { objectEntries } from "@homarr/common";
|
|
|
|
import { integrationDefs } from "../integration";
|
|
|
|
describe("Icon url's of integrations should be valid and return 200", () => {
|
|
objectEntries(integrationDefs).forEach(([integration, { iconUrl }]) => {
|
|
it.concurrent(`should return 200 for ${integration}`, async () => {
|
|
const res = await fetch(iconUrl);
|
|
expect(res.status).toBe(200);
|
|
});
|
|
});
|
|
});
|