5.1.0 • Published 10 months ago

@k6-contrib/fields-weight v5.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

Weight Field

import { weight } from '@k6-contrib/fields-weight';
import 'dotenv/config';

const Product = list({
  fields: {
    title: text({ validation: { isRequired: true } }),
    content: text(),
    weight: weight({}),
    packageWeight: weight({}),
  },
});