mirror of
https://github.com/fluencelabs/examples
synced 2025-04-29 04:32:14 +00:00
14 lines
314 B
TypeScript
14 lines
314 B
TypeScript
|
import { krasnodar } from '@fluencelabs/fluence-network-environment';
|
||
|
import { main } from '../main';
|
||
|
|
||
|
describe('smoke test', () => {
|
||
|
it('should work', async () => {
|
||
|
console.log = jest.fn();
|
||
|
|
||
|
await main(krasnodar);
|
||
|
|
||
|
expect(console.log).toBeCalledTimes(0);
|
||
|
// TODO::
|
||
|
});
|
||
|
});
|