Skip to content

Commit d6dffce

Browse files
committed
Fix unit test
1 parent 0fcbd67 commit d6dffce

File tree

1 file changed

+1
-10
lines changed

1 file changed

+1
-10
lines changed

packages/solidstart/test/vite/sourceMaps.test.ts

+1-10
Original file line numberDiff line numberDiff line change
@@ -38,20 +38,14 @@ describe('makeSourceMapsVitePlugin()', () => {
3838
makeSourceMapsVitePlugin({
3939
org: 'my-org',
4040
authToken: 'my-token',
41-
sourcemaps: {
42-
assets: ['foo/*.js'],
43-
ignore: ['bar/*.js'],
44-
filesToDeleteAfterUpload: ['baz/*.js'],
45-
},
41+
filesToDeleteAfterUpload: ['baz/*.js'],
4642
});
4743

4844
expect(sentryVitePluginSpy).toHaveBeenCalledWith(
4945
expect.objectContaining({
5046
org: 'my-org',
5147
authToken: 'my-token',
5248
sourcemaps: {
53-
assets: ['foo/*.js'],
54-
ignore: ['bar/*.js'],
5549
filesToDeleteAfterUpload: ['baz/*.js'],
5650
},
5751
}),
@@ -62,9 +56,6 @@ describe('makeSourceMapsVitePlugin()', () => {
6256
makeSourceMapsVitePlugin({
6357
org: 'my-org',
6458
authToken: 'my-token',
65-
sourcemaps: {
66-
assets: ['foo/*.js'],
67-
},
6859
unstable_sentryVitePluginOptions: {
6960
org: 'unstable-org',
7061
sourcemaps: {

0 commit comments

Comments
 (0)