Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range 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: posit-dev/publisher
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7e8379d2012e97bf9e0a27fa960e908f556a700a
Choose a base ref
..
head repository: posit-dev/publisher
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 280142876a2cf5d1c53de0c91e5fa6bf9c2e6e7b
Choose a head ref
Showing with 6 additions and 7 deletions.
  1. +0 −2 .github/workflows/home-view-unit-test.yaml
  2. +6 −5 extensions/vscode/webviews/homeView/vite.config.ts
2 changes: 0 additions & 2 deletions .github/workflows/home-view-unit-test.yaml
Original file line number Diff line number Diff line change
@@ -15,5 +15,3 @@ jobs:
cache-dependency-path: "**/package-lock.json"
- run: npm install
- run: npm test
- name: Check Vitest thresholds
run: git diff --name-only --exit-code vite.config.ts
11 changes: 6 additions & 5 deletions extensions/vscode/webviews/homeView/vite.config.ts
Original file line number Diff line number Diff line change
@@ -40,11 +40,12 @@ export default defineConfig({
coverage: {
enabled: true,
thresholds: {
functions: 30.13,
lines: 17.46,
branches: 44.82,
statements: 17.46,
autoUpdate: true,
functions: 30,
lines: 17,
branches: 44,
statements: 17,
// avoid auto-updating thresholds to avoid off by 0.01 differences
autoUpdate: false,
},
},
},