Skip to content

Commit

Permalink
Remove debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
tombrunet committed May 22, 2020
1 parent 6da9537 commit e786f56
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ var expect = require('chai').expect;
var aChecker = require("../../../../src");

before(async () => {
console.log("before ACHelper.test.js");
aChecker.Config = await aChecker.getConfig();
console.log("/before ACHelper.test.js");
});

// This Test Suite is to make sure all the objects/function added by ACHelper.js is added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,7 @@ var expect = require('chai').expect;
var aChecker = require("../../../../src");

before(async () => {
console.log("before aChecker.Config.Defined.test.js");
aChecker.Config = await aChecker.getConfig();
console.log("/before aChecker.Config.Defined.test.js");
});

// Make sure the aChecker.Config is defined
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,9 @@ describe("JSON Structure Verification Zombie", function () {
describe("Load Test: " + unitTestFile, function () {

before(async function () {
console.log("before aChecker.getCompliance.JSONObjectVerification.test.js")
let config = await aChecker.getConfig();
originalPolicies = config.policies;
config.policies = ["IBM_Accessibility"];
console.log("/before aChecker.getCompliance.JSONObjectVerification.test.js")
});

// The Individual testcase for each of the unittestcases.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ const puppeteer = require('puppeteer');
let browser;
let page;
before(async function () {
console.log("before aChecker.Content.Puppeteer.test.js");
let config = await aChecker.getConfig();
browser = await puppeteer.launch({ headless: config.headless, ignoreHTTPSErrors: aChecker.Config.ignoreHTTPSErrors || false});
page = await browser.newPage();
Expand All @@ -58,7 +57,6 @@ before(async function () {
}
}
});
console.log("/before aChecker.Content.Puppeteer.test.js");
})

after(async function () {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ let validList = {};
let policyMap = {};
const checker = new ace.Checker();
before(async function () {
console.log("before aChecker.Content.Zombie.test.js");
let config = await aChecker.getConfig();
config.policies.forEach(function (policy) {
policyMap[policy] = true;
Expand All @@ -54,7 +53,6 @@ before(async function () {
}
}
});
console.log("/before aChecker.Content.Zombie.test.js");
});

gdirs.forEach(function (gdir) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ let validList = {};
let policyMap = {};
const checker = new ace.Checker();
before(async function () {
console.log("before aChecker.URL.test.js");
let config = await aChecker.getConfig();
config.policies.forEach(function (policy) {
policyMap[policy] = true;
Expand All @@ -53,7 +52,6 @@ before(async function () {
}
}
});
console.log("/before aChecker.URL.test.js");
});

gdirs.forEach(function (gdir) {
Expand Down

0 comments on commit e786f56

Please sign in to comment.