Skip to content

Instantly share code, notes, and snippets.

@dubzzz
Created July 2, 2020 17:23
Show Gist options
  • Save dubzzz/56bd49fd65433a18528eee07fa90ef7c to your computer and use it in GitHub Desktop.
Save dubzzz/56bd49fd65433a18528eee07fa90ef7c to your computer and use it in GitHub Desktop.
const isSubstring = (pattern, text) => {
return text.indexOf(pattern) > 0;
}
miniFc.assert(
miniFc.property(
miniFc.tuple(miniFc.string(), miniFc.string(), miniFc.string()),
([a, b, c]) => isSubstring(b, a + b + c)
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment