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:
parent
abe943951a
commit
be04738c60
@ -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 };
|
||||||
|
@ -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(
|
||||||
|
Loading…
Reference in New Issue
Block a user