Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Karlie-777 committed Jun 23, 2024
1 parent 30b2197 commit 7cab4e0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions AISKU/Tests/Unit/src/AISKUSize.Tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ import { Snippet } from "../../../src/Snippet";
import { utlRemoveSessionStorage } from "@microsoft/applicationinsights-common";

export class AISKUSizeCheck extends AITestClass {
private readonly MAX_RAW_SIZE = 142;
private readonly MAX_BUNDLE_SIZE = 142;
private readonly MAX_RAW_DEFLATE_SIZE = 57;
private readonly MAX_BUNDLE_DEFLATE_SIZE = 57;
private readonly MAX_RAW_SIZE = 143;
private readonly MAX_BUNDLE_SIZE = 143;
private readonly MAX_RAW_DEFLATE_SIZE = 58;
private readonly MAX_BUNDLE_DEFLATE_SIZE = 58;
private readonly rawFilePath = "../dist/es5/applicationinsights-web.min.js";
// Automatically updated by version scripts
private readonly currentVer = "3.2.2";
Expand Down
4 changes: 2 additions & 2 deletions shared/1ds-core-js/test/Unit/src/FileSizeCheckTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { AITestClass } from "@microsoft/ai-test-framework";
import * as pako from 'pako';

export class FileSizeCheckTest extends AITestClass {
private readonly MAX_BUNDLE_SIZE = 67;
private readonly MAX_DEFLATE_SIZE = 28;
private readonly MAX_BUNDLE_SIZE = 68;
private readonly MAX_DEFLATE_SIZE = 29;
private readonly bundleFilePath = "../bundle/es5/ms.core.min.js";

public testInitialize() {
Expand Down

0 comments on commit 7cab4e0

Please sign in to comment.