• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

jonattanva / monolieta-search / 17181792095

24 Aug 2025 12:19AM UTC coverage: 93.521% (-4.4%) from 97.931%
17181792095

Pull #344

github

web-flow
Bump vite from 6.1.6 to 7.1.3

Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 6.1.6 to 7.1.3.
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v7.1.3/packages/vite)

---
updated-dependencies:
- dependency-name: vite
  dependency-version: 7.1.3
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Pull Request #344: Bump vite from 6.1.6 to 7.1.3

96 of 110 branches covered (87.27%)

Branch coverage included in aggregate %.

337 of 353 relevant lines covered (95.47%)

63.77 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

94.29
/src/document/unordered-document.ts
1
import { Document } from './document';
×
2

3
export class UnorderedDocument extends Document {
1✔
4
    constructor() {
1✔
5
        super();
17✔
6
    }
17✔
7

8
    insert(uid: string, tokens: string[]): void {
1✔
9
        const total = tokens.length;
38✔
10
        const cache = new Map<string, Map<string, boolean>>();
38✔
11

12
        for (let index = 0; index < total; index++) {
38✔
13
            const token = tokens[index];
345✔
14
            if (!this.collection.has(token)) {
345✔
15
                this.collection.set(token, []);
267✔
16
            }
267✔
17

18
            if (!cache.has(token)) {
345✔
19
                cache.set(token, new Map<string, boolean>());
317✔
20
            }
317✔
21

22
            const values = this.collection.get(token);
345✔
23
            if (values && !cache.get(token)!.has(uid)) {
345✔
24
                values.push(uid);
317✔
25
                cache.get(token)!.set(uid, true);
317✔
26
            }
317✔
27
        }
345✔
28
    }
38✔
29

30
    relevance(): void {
1✔
31
        // do nothing
32
    }
28✔
33
}
1✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc