0.2.0 • Published 4 years ago

@comet-cli/plugin-tests-laravel v0.2.0

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

@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);
}