CFML test runner times out on Hello World

I checked a few days apart but the test runner consistently times out on Hello World. The code passes the tests locally in 135ms.

Submitted Code
component {
	
	/**
	* @returns A string greeting the world
	*/
	 function hello() {
		return 'Hello, World!';
	}
	
}

The test runner is “just” really slow. So far we haven’t found a way to speed it up. We’re open to any suggestions!