File tree Expand file tree Collapse file tree 4 files changed +3
-3
lines changed
packages/support/cldr-data/src Expand file tree Collapse file tree 4 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 4848 ) ;
4949
5050 expect ( buildInfo ) . toHaveProperty ( 'build-tool' , 'tsup' ) ;
51- expect ( buildInfo ) . toHaveProperty ( 'module-format' , 'esmodules ' ) ;
51+ expect ( buildInfo ) . toHaveProperty ( 'module-format' , 'global ' ) ;
5252 expect ( buildInfo . version ) . toMatch ( / ^ \d + \. \d + \. \d + ( $ | - ) / u) ;
5353
5454 expect ( window . WebChat . FluentThemeProvider ) . toBeTruthy ( ) ;
Original file line number Diff line number Diff line change 5454 ) ;
5555
5656 expect ( buildInfo ) . toHaveProperty ( 'build-tool' , 'tsup' ) ;
57- expect ( buildInfo ) . toHaveProperty ( 'module-format' , 'esmodules ' ) ;
57+ expect ( buildInfo ) . toHaveProperty ( 'module-format' , 'global ' ) ;
5858 expect ( buildInfo . version ) . toMatch ( / ^ \d + \. \d + \. \d + ( $ | - ) / u) ;
5959
6060 expect ( window . WebChat . FluentThemeProvider ) . toBeTruthy ( ) ;
File renamed without changes.
Original file line number Diff line number Diff line change @@ -20,6 +20,6 @@ const childProcess = require('child_process');
2020test ( 'should load CLDR data' , ( ) =>
2121 new Promise ( ( resolve , reject ) =>
2222 childProcess
23- . fork ( join ( __dirname , './index.spec.mjs' ) )
23+ . fork ( join ( __dirname , './index.spec-actual .mjs' ) )
2424 . on ( 'exit' , exitCode => ( exitCode ? reject ( exitCode ) : resolve ( ) ) )
2525 ) ) ;
You can’t perform that action at this time.
0 commit comments