Skip to content

Commit 49fdc78

Browse files
committed
review update
1 parent 68b1e8c commit 49fdc78

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/project_config/project_config_manager.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ describe('ProjectConfigManagerImpl', () => {
3434
expect(logger.error).toHaveBeenCalled();
3535
});
3636

37-
it.only('should set status to Failed if neither datafile nor a datafileManager is passed into the constructor', async () => {
37+
it('should set status to Failed if neither datafile nor a datafileManager is passed into the constructor', async () => {
3838
const logger = getMockLogger();
3939
const manager = new ProjectConfigManagerImpl({ logger});
4040
manager.start();

lib/project_config/project_config_manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export class ProjectConfigManagerImpl extends BaseService implements ProjectConf
7373

7474
if(this.isSsr) {
7575
// If isSsr is true, we don't need to poll for datafile updates
76-
// this.datafileManager = undefined
76+
this.datafileManager = undefined
7777
}
7878

7979
if (!this.datafile && !this.datafileManager) {

0 commit comments

Comments
 (0)