File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
packages/remix/test/scripts Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -57,8 +57,8 @@ describe('createRelease', () => {
57
57
it ( 'should use given buildPath and urlPrefix over the defaults when given.' , async ( ) => {
58
58
await createRelease (
59
59
{
60
- urlPrefix : '~/build/subfolder ' ,
61
- buildPath : 'public/build/subfolder ' ,
60
+ urlPrefix : '~/build/' ,
61
+ buildPath : 'public/build' ,
62
62
} ,
63
63
'~/build/' ,
64
64
'public/build' ,
@@ -67,8 +67,8 @@ describe('createRelease', () => {
67
67
expect ( proposeVersionMock ) . toHaveBeenCalled ( ) ;
68
68
expect ( newMock ) . toHaveBeenCalledWith ( '0.1.2.3.4' ) ;
69
69
expect ( uploadSourceMapsMock ) . toHaveBeenCalledWith ( '0.1.2.3.4' , {
70
- urlPrefix : '~/build/subfolder ' ,
71
- include : [ 'public/build/subfolder ' ] ,
70
+ urlPrefix : '~/build/' ,
71
+ include : [ 'public/build' ] ,
72
72
useArtifactBundle : true ,
73
73
} ) ;
74
74
expect ( finalizeMock ) . toHaveBeenCalledWith ( '0.1.2.3.4' ) ;
You can’t perform that action at this time.
0 commit comments