Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.