@comet-cli/plugin-tests-laravel

Comet factory to generate test cases for the Laravel framework

Usage no npm install needed!

<script type="module">
  import cometCliPluginTestsLaravel from 'https://cdn.skypack.dev/@comet-cli/plugin-tests-laravel';
</script>

README

@comet-cli/plugin-tests-laravel

This package contains the implementation of a Laravel tests factory. It can generate test cases for the Laravel PHP framework based on previously decorated test case definitions.

Usage

import LaravelTestsFactory from '@comet-cli/factory-tests-laravel';

async function main() {
  const model = {}; // Your API specification meta-model
  const factory = new LaravelTestsFactory();
  await factory.execute(model);
}