@river-build/sdk
Version:
For more details, visit the following resources:
20 lines • 772 B
JavaScript
/**
* @group main
*/
import { bobTalksToHimself } from '../bob_testUtils';
import { dlog } from '@river-build/dlog';
import { makeRandomUserContext } from '../testUtils';
const baseLog = dlog('csb:test:bobFlushes');
describe('bobFlushes', () => {
let bobsContext;
beforeEach(async () => {
bobsContext = await makeRandomUserContext();
});
test('bobTalksToHimself-noflush-nopresync', async () => {
await bobTalksToHimself(baseLog.extend('bobTalksToHimself-noflush-nopresync'), bobsContext, false, false);
});
test('bobTalksToHimself-noflush-presync', async () => {
await bobTalksToHimself(baseLog.extend('bobTalksToHimself-noflush-presync'), bobsContext, false, true);
});
});
//# sourceMappingURL=bobFlushes.test.js.map