AkurAI Build
Menu

popagent

public

Latest change 2521e6b2fa3380b29405cc89bb2f6fd2624b28bb - Show deploy-managed application version by AkurAI Build

import { describe, expect, test } from "bun:test";
import { APP_VERSION } from "./version";

describe("application version", () => {
  test("is a deploy-managed semantic version", () => {
    expect(APP_VERSION).toMatch(/^\d+\.\d+\.\d+$/);
  });
});