Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
78bccbe
Dispose realtime docs when no longer in use
Nateowami Aug 6, 2025
d9aed6c
await realtimeService.get
marksvc Aug 28, 2025
f117499
await realtimeService.get
marksvc Aug 28, 2025
fc3e0ee
add name arg to realtimeService.subscribeQuery
marksvc Aug 28, 2025
ea6bf2c
await
marksvc Aug 28, 2025
046650f
await
marksvc Aug 28, 2025
1c77033
onlineQuery name
marksvc Aug 28, 2025
c045293
await, name
marksvc Aug 28, 2025
82fbfc4
await
marksvc Aug 28, 2025
ea590bf
await realtimeService.get
marksvc Aug 28, 2025
f17e7a8
async
marksvc Aug 28, 2025
1377684
rm old suppressImplicitAnyIndexErrors
marksvc Aug 29, 2025
a23fb93
await, 'spec'
marksvc Aug 29, 2025
5f752d3
await, 'spec'
marksvc Aug 29, 2025
0ef431e
async
marksvc Aug 29, 2025
61ee224
await
marksvc Aug 29, 2025
f58daf8
question-dialog specs: await
marksvc Sep 9, 2025
0836da7
Question dialog spec private
marksvc Sep 9, 2025
3e82f55
draft sources component spec await
marksvc Sep 9, 2025
7f3ab4f
fix tests in sync-progress.component
marksvc Sep 10, 2025
23aa14a
fix tests in checking-overview.component
marksvc Sep 10, 2025
d28cfcd
fix tests in lynx-workspace.service
marksvc Sep 10, 2025
3c5abe6
fix tests for sync.component
marksvc Sep 10, 2025
488fa3f
fix most of app.component.spec
marksvc Sep 10, 2025
0e2ca24
adjust permissions service spec
marksvc Sep 10, 2025
b61fefd
fix tests in connect-project.component
marksvc Sep 10, 2025
26cc698
fix most of the tests in editor.component
marksvc Sep 10, 2025
ac72eed
some fixes to share dialog component
marksvc Sep 12, 2025
f3d595c
share dialog - overlayContainer.ngOnDestroy
marksvc Sep 12, 2025
5c4bc55
fix share dialog component tests
marksvc Sep 12, 2025
6995543
fix tests in translate overview component
marksvc Sep 12, 2025
2c9523d
permissions service tests - fix injection errors about httpclient and…
marksvc Sep 15, 2025
a786539
fix permissions service spec by adding mockSFUserProjectsService
marksvc Sep 15, 2025
bee0304
checking component spec some fixes
marksvc Sep 15, 2025
344ea9a
checking spec await
marksvc Sep 15, 2025
74b1d68
checking component spec await
marksvc Sep 15, 2025
9080214
checking component spec await
marksvc Sep 15, 2025
61a1e4b
use jasmine spyOn instead of ts-mockito spy for questionDoc
marksvc Sep 16, 2025
3051f0e
app componet spec await
marksvc Sep 16, 2025
f595b5c
fix after rebase
marksvc Sep 16, 2025
64e02b6
fix lynx tests after rebase
marksvc Sep 16, 2025
5a61ab3
Fix after rebase
marksvc Sep 17, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 5 additions & 13 deletions scripts/db_tools/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
"compilerOptions": {
"module": "commonjs"
}

},
"compilerOptions": {
"baseUrl": "./",
Expand All @@ -23,24 +22,17 @@
"module": "ES2020",
"allowSyntheticDefaultImports": true,
"allowJs": true,
"lib": [
"es2018",
"dom"
],
"lib": ["es2018", "dom"],
"emitDecoratorMetadata": true,
"suppressImplicitAnyIndexErrors": true,
"esModuleInterop": true,
"typeRoots": ["node_modules/@types", "../../src/RealtimeServer/typings",
],
"typeRoots": ["node_modules/@types", "../../src/RealtimeServer/typings"],
"resolveJsonModule": true,
"paths": {
"xforge-common/*": [
"../../src/SIL.XForge.Scripture/ClientApp/src/xforge-common/*"
],
"*": [ "../../src/RealtimeServer/typings/*"]
"xforge-common/*": ["../../src/SIL.XForge.Scripture/ClientApp/src/xforge-common/*"],
"*": ["../../src/RealtimeServer/typings/*"]
},
"inlineSourceMap": false,
"inlineSources": true,
"noEmit": false,
"noEmit": false
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,7 @@ async function joinAsChecker(
// Give time for the last answer to be saved
await page.waitForTimeout(500);
} catch (e) {
await page.pause();
console.error('Error running tests for checker ' + userNumber);
console.error(e);
await screenshot(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import { ServalAdminAuthGuard } from './serval-administration/serval-admin-auth.
import { ServalAdministrationComponent } from './serval-administration/serval-administration.component';
import { ServalProjectComponent } from './serval-administration/serval-project.component';
import { SettingsComponent } from './settings/settings.component';
import { BlankPageComponent } from './shared/blank-page/blank-page.component';
import { PageNotFoundComponent } from './shared/page-not-found/page-not-found.component';
import { SettingsAuthGuard, SyncAuthGuard } from './shared/project-router.guard';
import { SyncComponent } from './sync/sync.component';
Expand All @@ -33,6 +34,7 @@ const routes: Routes = [
{ path: 'serval-administration/:projectId', component: ServalProjectComponent, canActivate: [ServalAdminAuthGuard] },
{ path: 'serval-administration', component: ServalAdministrationComponent, canActivate: [ServalAdminAuthGuard] },
{ path: 'system-administration', component: SystemAdministrationComponent, canActivate: [SystemAdminAuthGuard] },
{ path: 'blank-page', component: BlankPageComponent },
{ path: '**', component: PageNotFoundComponent }
];

Expand Down
Loading
Loading