Skip to main content
Module

x/polkadot/test.ts

Package publishing for deno.land/x/polkadot
Go to Latest
File
// Copyright 2017-2023 @polkadot/deno authors & contributors// SPDX-License-Identifier: Apache-2.0
import { assertEquals } from 'https://deno.land/std/testing/asserts.ts';
import { stringCamelCase } from './util/mod.ts';
Deno.test('deno: util', () => { assertEquals(stringCamelCase('foo-bar baz'), 'fooBarBaz', 'stringCamelCase');});