Skip to content

Commit

Permalink
Fixed issue where when we were unzipping the files we were unzipping …
Browse files Browse the repository at this point in the history
…legacy and scripting to the same directory
  • Loading branch information
tkmcmaster committed Oct 4, 2023
1 parent 68dad10 commit bf60832
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions controller/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
system-test-encrypt-key*
/.nyc_output
/test/pewpew
/test/scripting/pewpew
/test/password.txt
/pewpew-okta-creds-db
/pewpew-okta-creds-db-np
Expand Down
2 changes: 1 addition & 1 deletion controller/acceptance/pewpew.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ async function fetch (
// Re-create these here so we don't have to run yamlparser.spec by importing it
const UNIT_TEST_FOLDER = process.env.UNIT_TEST_FOLDER || "test";
const PEWPEW_LEGACY_FILEPATH = path.join(UNIT_TEST_FOLDER, "pewpew.zip");
const PEWPEW_SCRIPTING_FILEPATH = path.join(UNIT_TEST_FOLDER, "pewpew_scripting.zip");
const PEWPEW_SCRIPTING_FILEPATH = path.join(UNIT_TEST_FOLDER, "scripting/pewpew.zip");

// Beanstalk <SYSTEM_NAME>_<SERVICE_NAME>_URL
const integrationUrl = "http://" + (process.env.BUILD_APP_URL || `localhost:${process.env.PORT || "8081"}`);
Expand Down
2 changes: 1 addition & 1 deletion controller/integration/pewpew.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ logger.config.LogFileName = "ppaas-controller";

const UNIT_TEST_FOLDER = process.env.UNIT_TEST_FOLDER || "test";
const PEWPEW_LEGACY_FILEPATH = path.join(UNIT_TEST_FOLDER, "pewpew.zip");
const PEWPEW_SCRIPTING_FILEPATH = path.join(UNIT_TEST_FOLDER, "pewpew_scripting.zip");
const PEWPEW_SCRIPTING_FILEPATH = path.join(UNIT_TEST_FOLDER, "scripting/pewpew.zip");

const authAdmin: AuthPermissions = {
authPermission: AuthPermission.Admin,
Expand Down
2 changes: 1 addition & 1 deletion controller/test/pewpew.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ logger.config.LogFileName = "ppaas-controller";

const UNIT_TEST_FOLDER = process.env.UNIT_TEST_FOLDER || "test";
const PEWPEW_LEGACY_FILEPATH = path.join(UNIT_TEST_FOLDER, "pewpew.zip");
const PEWPEW_SCRIPTING_FILEPATH = path.join(UNIT_TEST_FOLDER, "pewpew_scripting.zip");
const PEWPEW_SCRIPTING_FILEPATH = path.join(UNIT_TEST_FOLDER, "scripting/pewpew.zip");

const authAdmin: AuthPermissions = {
authPermission: AuthPermission.Admin,
Expand Down
File renamed without changes.

0 comments on commit bf60832

Please sign in to comment.