blob: ca2d0b9ce79662a86ab4c04c532b278429a13b8e (
plain) (
blame)
1
2
3
4
5
6
7
|
import { expect, test } from "bun:test";
import { resolve } from "path";
import MyPNG from "./test-png.png";
test("png import", () => {
expect(MyPNG).toBe(resolve(__dirname, "./test-png.png"));
});
|