Skip to main content
Module

x/ts_serialize/test_deps_test.ts

A zero dependency library for serializing data
Go to Latest
File
// Copyright 2018-2022 Gamebridge.ai authors. All rights reserved. MIT license.
import { assert, assertEquals, test } from "./test_deps.ts";import * as mod from "./test_deps.ts";
test({ name: "Test deps API", fn() { assert(mod != null); assertEquals(typeof mod.test, "function"); assertEquals(typeof mod.assert, "function"); assertEquals(typeof mod.assertEquals, "function"); assertEquals(typeof mod.assertNotEquals, "function"); assertEquals(typeof mod.assertStrictEquals, "function"); assertEquals(typeof mod.fail, "function"); assertEquals(Object.keys(mod).length, 6); },});