Skip to content

Commit 0dea5e5

Browse files
committed
chore: workaround test type error
1 parent e7c1e1a commit 0dea5e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/compileStyle.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ test('custom postcss options', () => {
127127
postcssOptions: { random: 'foo' }
128128
})
129129

130-
expect((result.rawResult).opts.random).toBe('foo')
130+
expect((result.rawResult as any).opts.random).toBe('foo')
131131
})
132132

133133
test('async postcss plugin in sync mode', () => {

0 commit comments

Comments
 (0)