**build: update test results file**
- Updated `test-results.json` to reflect the latest test outcomes. - Ensures accuracy of recorded test results after recent changes. **Purpose**: Keep test result records up-to-date for reliable tracking and reference.
This commit is contained in:
parent
b8847812c9
commit
a8ab0c0ca9
2 changed files with 13 additions and 5 deletions
|
|
@ -615,7 +615,9 @@ export class FileSystemStorage extends BaseStorage {
|
|||
/**
|
||||
* Get nouns by noun type
|
||||
*/
|
||||
protected async getNounsByNounType_internal(nounType: string): Promise<HNSWNoun[]> {
|
||||
protected async getNounsByNounType_internal(
|
||||
nounType: string
|
||||
): Promise<HNSWNoun[]> {
|
||||
return this.getNodesByNounType(nounType)
|
||||
}
|
||||
|
||||
|
|
@ -650,14 +652,18 @@ export class FileSystemStorage extends BaseStorage {
|
|||
/**
|
||||
* Get verbs by source
|
||||
*/
|
||||
protected async getVerbsBySource_internal(sourceId: string): Promise<GraphVerb[]> {
|
||||
protected async getVerbsBySource_internal(
|
||||
sourceId: string
|
||||
): Promise<GraphVerb[]> {
|
||||
return this.getEdgesBySource(sourceId)
|
||||
}
|
||||
|
||||
/**
|
||||
* Get verbs by target
|
||||
*/
|
||||
protected async getVerbsByTarget_internal(targetId: string): Promise<GraphVerb[]> {
|
||||
protected async getVerbsByTarget_internal(
|
||||
targetId: string
|
||||
): Promise<GraphVerb[]> {
|
||||
return this.getEdgesByTarget(targetId)
|
||||
}
|
||||
|
||||
|
|
@ -678,7 +684,9 @@ export class FileSystemStorage extends BaseStorage {
|
|||
/**
|
||||
* Save statistics data to storage
|
||||
*/
|
||||
protected async saveStatisticsData(statistics: StatisticsData): Promise<void> {
|
||||
protected async saveStatisticsData(
|
||||
statistics: StatisticsData
|
||||
): Promise<void> {
|
||||
await this.saveMetadata(STATISTICS_KEY, statistics)
|
||||
}
|
||||
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue