Skip to content

Instantly share code, notes, and snippets.

@dubzzz
Last active March 21, 2018 20:22
Show Gist options
  • Save dubzzz/ef0fbac59422ebc4687ab25612ed5187 to your computer and use it in GitHub Desktop.
Save dubzzz/ef0fbac59422ebc4687ab25612ed5187 to your computer and use it in GitHub Desktop.
const fc = require('fast-check');
fc.assert(
fc.property(
fc.string(), fc.string(), fc.string(),
(a, b, c) => contains(b, a+b+c))
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment