Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: capricorn86/happy-dom
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v13.0.1
Choose a base ref
...
head repository: capricorn86/happy-dom
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v13.0.2
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Jan 12, 2024

  1. Copy the full SHA
    dc9fa39 View commit details
  2. Merge pull request #1200 from capricorn86/task/1199-remove-unused-bro…

    …wser-setting
    
    #1199@patch: Removes unused browser setting.
    capricorn86 authored Jan 12, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    34e4ca8 View commit details
Showing with 0 additions and 23 deletions.
  1. +0 −23 packages/happy-dom/src/browser/types/IBrowserSettings.ts
23 changes: 0 additions & 23 deletions packages/happy-dom/src/browser/types/IBrowserSettings.ts
Original file line number Diff line number Diff line change
@@ -67,29 +67,6 @@ export default interface IBrowserSettings {
maxTouchPoints: number;
};

/**
* Settings for the browser's cache.
*/
cache: {
/** Cache for fetch responses. */
response: {
/** Disables the cache. */
disable: boolean;

/** Total in memory cache size in bytes. */
maxMemorySize: number;

/** Max in memory cache size for a response in bytes. */
maxMemoryResponseSize: number;

/** Max disk cache size for a response in bytes. */
maxDiskResponseSize: number;

/** Disk cache path. Setting this property will enable the disk cache. */
diskPath: string;
};
};

/**
* Settings for the browser's device.
*/