Skip to content
This repository has been archived by the owner on Sep 21, 2022. It is now read-only.

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Willis (HE / HIM) committed Sep 19, 2022
1 parent df51a61 commit c4d5180
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 8 deletions.
2 changes: 0 additions & 2 deletions src/components/manifest-designer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -293,8 +293,6 @@ export class ManifestDesigner extends LitElement {
this.manifest = manifestInfo.manifest;
}

console.log('manifest', this.manifest);

}

render() {
Expand Down
5 changes: 0 additions & 5 deletions src/components/scanner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,6 @@ export class PWAScanner extends LitElement {
this.manifestTestsLoading = true;
let manifestInfo = await getManifestInfo();

console.log('manifestInfo', manifestInfo);


const tests = await runManifestChecks({
manifestUrl: manifestInfo.manifestUri!,
initialManifest: manifestInfo.manifest!,
Expand All @@ -121,7 +118,6 @@ export class PWAScanner extends LitElement {
manifest: manifestInfo.manifest!,
});

console.log('tests', tests);

const passed = tests.filter(t => t.result);
const failed = tests.filter(t => !t.result);
Expand All @@ -132,7 +128,6 @@ export class PWAScanner extends LitElement {
category: "Manifest"
}

console.log("here");
this.manifestTestsLoading = false;


Expand Down
1 change: 0 additions & 1 deletion src/utils/manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ export async function runManifestChecks(
return default_results;
} else {
const manifestTests: Validation[] = await validateManifest((context.manifest as any));
console.log("manifestTests", manifestTests);

let results = [];

Expand Down

0 comments on commit c4d5180

Please sign in to comment.