Skip to content

Instantly share code, notes, and snippets.

@adamcameron
Created October 30, 2021 22:20
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 adamcameron/b8e6322c291ba6308bd82c3ee499dd0e to your computer and use it in GitHub Desktop.
Save adamcameron/b8e6322c291ba6308bd82c3ee499dd0e to your computer and use it in GitHub Desktop.
Example tests
<cfscript>
function run() {
describe("some tests", () => {
it("a passing test", () => {
expect(true).toBe(true)
})
it("a failing test", () => {
expect(true).toBe(false)
})
})
}
run()
</cfscript>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment