1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-08-23 13:46:45 +02:00

fix: remove console log from tests

This commit is contained in:
sjaanus 2025-07-03 09:51:40 +03:00
parent abe943951a
commit be04738c60
No known key found for this signature in database
GPG Key ID: 20E007C0248BA7FF
2 changed files with 0 additions and 5 deletions

View File

@ -72,7 +72,6 @@ describe('Webhook integration', () => {
.post('/') .post('/')
.matchHeader('Content-Type', 'application/json') .matchHeader('Content-Type', 'application/json')
.reply(200, (uri, body) => { .reply(200, (uri, body) => {
console.log(`uri: ${uri} body: ${body}`);
callCount++; callCount++;
callBody = body; callBody = body;
return { ok: true, status: 200 }; return { ok: true, status: 200 };

View File

@ -204,10 +204,6 @@ describe('the playground service (e2e)', () => {
segments?: SegmentSchema[]; segments?: SegmentSchema[];
}): Promise<PlaygroundFeatureEvaluationResult[]> => { }): Promise<PlaygroundFeatureEvaluationResult[]> => {
await seedDatabaseForPlaygroundTest(db, features, env, segments); await seedDatabaseForPlaygroundTest(db, features, env, segments);
// const activeSegments = await db.stores.segmentStore.getAllFeatureStrategySegments()
// console.log("active segments db seeding", activeSegments)
const projects = '*'; const projects = '*';
const serviceFeatures = await service.evaluateQuery( const serviceFeatures = await service.evaluateQuery(