Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trycf/c631c1f47c8addb2d9aa4d7dacad114f to your computer and use it in GitHub Desktop.
Save trycf/c631c1f47c8addb2d9aa4d7dacad114f to your computer and use it in GitHub Desktop.
TryCF Gist
<cfscript>
function run() {
describe("some tests", () => {
it("a passing test", () => {
expect(true).toBe(true)
})
it("a failing test", () => {
expect(true).toBe(false)
})
})
}
tinyTest.runTests()
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment