234 attempt to fix js error Uncaught SyntaxError: Unexpected identifier 'hidden'
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
component extends="taffy.core.api" {
|
||||
|
||||
this.name = "TaffyE2ETestAPI_" & hash(getCurrentTemplatePath());
|
||||
this.sessionManagement = false;
|
||||
|
||||
variables.testApiPath = getDirectoryFromPath(getCurrentTemplatePath());
|
||||
variables.rootPath = getDirectoryFromPath(left(variables.testApiPath, len(variables.testApiPath) - 1));
|
||||
variables.rootPath = getDirectoryFromPath(left(variables.rootPath, len(variables.rootPath) - 1));
|
||||
|
||||
this.mappings["/taffy"] = variables.rootPath;
|
||||
this.mappings["/resources"] = variables.testApiPath & "resources";
|
||||
|
||||
variables.framework = {
|
||||
disableDashboard: true,
|
||||
disabledDashboardRedirect: "",
|
||||
returnExceptionsAsJson: true
|
||||
};
|
||||
|
||||
function onApplicationStart() {
|
||||
return super.onApplicationStart();
|
||||
}
|
||||
|
||||
function onRequestStart(targetPath) {
|
||||
return super.onRequestStart(targetPath);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user