Skip to content

Commit

Permalink
Fix size check which "nightly" is added to the bundle (#1971)
Browse files Browse the repository at this point in the history
  • Loading branch information
MSNev authored Jan 13, 2023
1 parent 389b73a commit 65fddb1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions AISKULight/Tests/Unit/src/AISKULightSize.Tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import * as pako from "pako";
export class AISKULightSizeCheck extends AITestClass {
private readonly MAX_RAW_SIZE = 70;
private readonly MAX_BUNDLE_SIZE = 70;
private readonly MAX_RAW_DEFLATE_SIZE = 28;
private readonly MAX_BUNDLE_DEFLATE_SIZE = 28;
private readonly MAX_RAW_DEFLATE_SIZE = 29;
private readonly MAX_BUNDLE_DEFLATE_SIZE = 29;
private readonly rawFilePath = "../dist/applicationinsights-web-basic.min.js";
private readonly prodFilePath = "../browser/aib.2.min.js";

Expand Down

0 comments on commit 65fddb1

Please sign in to comment.