Remove isCli method
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import 'mocha';
|
||||
|
||||
import { updateRadarOrderbookUsdPricesAsync } from '../../src/queries/update_radar_orderbook_usd_prices';
|
||||
import { createDbConnectionOnceAsync } from '../db_setup';
|
||||
import { chaiSetup } from '../utils/chai_setup';
|
||||
|
||||
chaiSetup.configure();
|
||||
|
||||
describe('radar_orderbook_usd_prices', () => {
|
||||
it('Does not crash when running on current schema', async () => {
|
||||
const connection = await createDbConnectionOnceAsync();
|
||||
await updateRadarOrderbookUsdPricesAsync(connection, 0);
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user