![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
io.toast-tk:toast-tk-maven-plugin
Advanced tools
Toast TK Maven plugin Mojos: - download: Download test scripts locally - upload: Upload local @Action sentences to be used on the webapp (steps' auto-completion) - run: Execute local test scripts - report: publish test plan reports
A Maven plugin to downloads scenario and upload reusable sentences to toast-tk-webapp.
It helps collecting scenarios for local execution.
How to use the Toast Tk Maven Plugin can be found on the example project.
<repository>
<id>snapshots-repo</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<plugin>
<groupId>io.toast-tk</groupId>
<artifactId>toast-tk-maven-plugin</artifactId>
<version>0.1.5-SNAPSHOT</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>download</goal>
</goals>
<configuration>
<!-- Change with your webapp url:port -->
<webAppUrl>http://localhost:9000</webAppUrl>
<!-- Change to the user token (in the user profile) -->
<apiKey>4fYDkIAL0qrHXNxRKuK8yzUZAgNr9Ywf</apiKey>
</configuration>
/execution>
</executions>
</plugin>
<plugin>
<groupId>io.toast-tk</groupId>
<artifactId>toast-tk-maven-plugin</artifactId>
<version>0.1.5-SNAPSHOT</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<scripts>
<fileset>
<directory>${basedir}/src/main/resources</directory>
<includes>
<include>/**/*.*.md</include>
</includes>
</fileset>
</scripts>
<pluginsDirectory>${basedir}/plugins</pluginsDirectory>
<outputDirectory>${basedir}/reports</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>io.toast-tk</groupId>
<artifactId>toast-tk-maven-plugin</artifactId>
<version>0.1.5-SNAPSHOT</version>
<executions>
<execution>
<phase>integration-test</phase>
<goals>
<goal>report</goal>
</goals>
<configuration>
<apiKey>4fYDkIAL0qrHXNxRKuK8yzUZAgNr9Ywf</apiKey>
<mongoHost>localhost</mongoHost>
<mongoPort>27017</mongoPort>
<mongoDb>play_db</mongoDb>
<scripts>
<fileset>
<directory>${basedir}/src/main/resources</directory>
<includes>
<include>/**/*.*.md</include>
</includes>
</fileset>
</scripts>
<pluginsDirectory>${basedir}/plugins</pluginsDirectory>
<outputDirectory>${basedir}/reports</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
Toast TK is a young project.
For contribution rules and guidelines, See CONTRIBUTING.md
If you'd like to help, get in touch and let us know how you'd like to help. We love contributors!!
FAQs
Toast TK Maven plugin Mojos: - download: Download test scripts locally - upload: Upload local @Action sentences to be used on the webapp (steps' auto-completion) - run: Execute local test scripts - report: publish test plan reports
We found that io.toast-tk:toast-tk-maven-plugin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.