mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-21 05:41:43 +03:00
9 lines
182 B
TypeScript
9 lines
182 B
TypeScript
|
import Urbit from '../src';
|
||
|
|
||
|
describe('blah', () => {
|
||
|
it('works', () => {
|
||
|
const connection = new Urbit('~sampel-palnet', '+code');
|
||
|
expect(connection).toEqual(2);
|
||
|
});
|
||
|
});
|