mirror of
https://github.com/Unleash/unleash.git
synced 2025-07-26 13:48:33 +02:00
fix: remove console log from tests (#10292)
One thing that can make tests fail is console.out, as it produces IO.
This commit is contained in:
parent
abe943951a
commit
48efcefba7
@ -72,7 +72,6 @@ describe('Webhook integration', () => {
|
||||
.post('/')
|
||||
.matchHeader('Content-Type', 'application/json')
|
||||
.reply(200, (uri, body) => {
|
||||
console.log(`uri: ${uri} body: ${body}`);
|
||||
callCount++;
|
||||
callBody = body;
|
||||
return { ok: true, status: 200 };
|
||||
|
@ -204,10 +204,6 @@ describe('the playground service (e2e)', () => {
|
||||
segments?: SegmentSchema[];
|
||||
}): Promise<PlaygroundFeatureEvaluationResult[]> => {
|
||||
await seedDatabaseForPlaygroundTest(db, features, env, segments);
|
||||
|
||||
// const activeSegments = await db.stores.segmentStore.getAllFeatureStrategySegments()
|
||||
// console.log("active segments db seeding", activeSegments)
|
||||
|
||||
const projects = '*';
|
||||
|
||||
const serviceFeatures = await service.evaluateQuery(
|
||||
|
Loading…
Reference in New Issue
Block a user