File tree Expand file tree Collapse file tree 4 files changed +2
-3
lines changed Expand file tree Collapse file tree 4 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ module.exports = {
88 'src/gen' ,
99 'dist' ,
1010 'docs' ,
11+ 'playwright-report' ,
1112 /*
1213 * TODO(mc, 2023-04-06): something about nested node_modules in examples
1314 * is causing eslint to choke. Investigate workspaces as a solution
Original file line number Diff line number Diff line change @@ -21,4 +21,3 @@ export const differentAccessToken: AccessToken = {
2121 type : 'access-token' ,
2222 payload : 'different-access-token' ,
2323} ;
24-
Original file line number Diff line number Diff line change @@ -2,4 +2,3 @@ export const TEST_URL = 'http://base.test';
22export const TEST_HOST = 'test-host' ;
33export const TEST_AUTH_ENTITY = 'test-entity' ;
44export const TEST_SIGNALING_ADDRESS = 'https://signaling.test' ;
5-
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ export class EventDispatcher {
1717 on ( type : string , listener : Callback ) {
1818 const { listeners } = this ;
1919 listeners [ type ] ??= new Set ( ) ;
20- listeners [ type ] ? .add ( listener ) ;
20+ listeners [ type ] . add ( listener ) ;
2121 }
2222
2323 once ( type : string , listener : Callback ) {
You can’t perform that action at this time.
0 commit comments