From 183e8189a7ce0649f16caba788cc82c5eaa7e085 Mon Sep 17 00:00:00 2001 From: Zac Spitzer Date: Tue, 16 Jul 2024 09:09:17 +0200 Subject: [PATCH] Update Application.cfc --- custom/benchmark/Application.cfc | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/custom/benchmark/Application.cfc b/custom/benchmark/Application.cfc index b5c362d..4e6d6e9 100644 --- a/custom/benchmark/Application.cfc +++ b/custom/benchmark/Application.cfc @@ -1,9 +1,11 @@ component { this.name="bench-runner"; - application.testSuite = [ - "hello-world" - , "json" - , "qoq-hsqldb" - ]; + function onApplicationStart(){ + application.testSuite = [ + "hello-world" + , "json" + , "qoq-hsqldb" + ]; + } } \ No newline at end of file