Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save trycf/99969013e76189f4f1d56054349cbbb5 to your computer and use it in GitHub Desktop.
Save trycf/99969013e76189f4f1d56054349cbbb5 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)
})
})
}
</cfscript>
<div class="tinyTest">
<cfset run()>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment