# Run Normal Sync on the Tenant

Before you can try out your new normal sync you will need to put your tenant on a new release based on your new code.  To do that follow all the steps in the [Check the Customized Connection Settings Page](https://docs.pandium.com/getting-started/pandium-integration-tutorial/pokemon-of-the-day-part-1/write-the-integration-in-typescript/check-the-customized-connection-settings-page).&#x20;

1. Once your tenant is on that new release, navigate to your integration's tenant by clicking **Integrations** from the side bar > the **Unpublished** tab > the card for your *Pokémon of the Day* integration > the **Tenants** tab > the row for your tenant.

<figure><img src="https://4017407078-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MfJn-9R_dn6dvcGNcdk%2Fuploads%2FuVySzCbw6xGBmf4UzugS%2Fimage.png?alt=media&#x26;token=c79d3e65-5a71-421f-82da-cf5e418dbe57" alt=""><figcaption></figcaption></figure>

2. Click the arrow on **Sync Now** > **Normal Sync.**  This will kick off a normal sync for your tenant, which will appear in the ***Runs*** list at the bottom of the page.  Before the run is complete you should get a Slack message about the Pokémon of the Day.

<figure><img src="https://4017407078-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MfJn-9R_dn6dvcGNcdk%2Fuploads%2FJicdF01CBX4qY7996XyQ%2Fimage.png?alt=media&#x26;token=3fb9b37f-dadc-4255-93f7-180b9c46e1ab" alt=""><figcaption></figcaption></figure>

3. Click the icon in the run's *Status* column.  This will display the *Run Detail* page for the run. &#x20;

The log there should look just like the logs for the normal syncs you ran locally during development (with the exception that the context logged out has far more information now).

The last line of the log should be the standard out and it should look something like this:

```
[OUT] {"last_pokemon_id":"1"}
```

4. Navigate back to the *Tenant Detail* page by clicking the tenant's name at the top of the *Run Detail* page.

To confirm that context is correctly being passed from one run to the next, start another normal sync. &#x20;

5. Click the arrow on **Sync Now** > **Normal Sync.**  Before the run is complete you should get a Slack message about a different Pokémon of the day.
6. Locate the run in the *Run* list at the bottom of the *Tenant Detail* page, and click on the icon in the run's *Status* column.  This will display the *Run Detail* page for the run.&#x20;

The log in the Run Detail page should be very similar to the last run but take note of a few things:

* Within the context logged at the start of the run you should be able to find `last_successful_run_std_out: '{"last_pokemon_id":1}'`.  Notice that this matches the standard out the tenant's last normal sync.
* The last line of the log should be the standard out , and its ID should be greater than the last one `[OUT] {"last_pokemon_id":2}`.

Now that you've seen your code runs correctly on a Pandium tenant you just need to change the tenant's schedule so it runs on a daily basis!
