# How do I configure the expect timeout from synthetic config

**URL:** https://discuss.elastic.co/t/how-do-i-configure-the-expect-timeout-from-synthetic-config/376931
**Category:** Synthetics
**Created:** [April 9, 2025, 1:28am UTC](https://discuss.elastic.co/t/how-do-i-configure-the-expect-timeout-from-synthetic-config/376931 "2025-04-09T01:28:55Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![xyngfei](https://avatars.discourse-cdn.com/v4/letter/x/a88e57/32.png) [@xyngfei](https://discuss.elastic.co/u/xyngfei)
#### Post date: [April 9, 2025, 1:28am UTC](https://discuss.elastic.co/t/how-do-i-configure-the-expect-timeout-from-synthetic-config/376931/1 "2025-04-09T01:28:55Z")

</div>

In the playwright config, I can set the expect timeout as below:-

```auto
const config: PlaywrightTestConfig = {
  timeout: 120_000,
  expect: {
    timeout: 15_000,
  },
},

```

Question: Is there any JourneyConfig that allows set the expect timeout?
