Skip to content

Commit 884d828

Browse files
committed
skip if not boxlang
1 parent 061d329 commit 884d828

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

tests/specs/web/routing/RouterAITest.cfc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ component extends="coldbox.system.testing.BaseModelTest" skip="notBoxlang" {
2121
/*********************************** BDD SUITES ***********************************/
2222

2323
function run( testResults, testBox ){
24+
25+
if( notBoxlang() ){
26+
return;
27+
}
28+
2429
describe( "AI Routing — toAi()", function(){
2530
beforeEach( function(){
2631
variables.router = createMock( "coldbox.system.web.routing.Router" )

0 commit comments

Comments
 (0)