# Exporting Tests for CI

Project suites can be exported as [Jest test project](https://jestjs.io/) and be ran in command line by, for example, Continuous Integration server.&#x20;

As we press **Ctrl+Shift-E** (⌘⇧E) or click on **File/Export Project for CI...** menu item:

![](/files/-Lh_M5h0f52GlwWzjdRl)

you get **Export Project** modal window:

![Export Project modal window](/files/-Lh_OnZBZunuUTD8tGSf)

It is quite  similar to [Test Reports ](https://docs.puppetry.app/running-tests) window. So we can choose target test environment, which suites to include  into Jest project and finally where to save the generated project.

After exporting we can jump to the given export directory and install npm dependencies:

```
npm install
```

then we run the tests:

```
npm test
```

We are expected to get output like that:

![Running Puppetry export in CLI](/files/-Lh_PBEsCtFWw0UmxBco)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.puppetry.app/master/exporting-tests-for-ci.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
