mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
9 lines
433 B
TypeScript
9 lines
433 B
TypeScript
/* eslint-disable @typescript-eslint/quotes */
|
|
import { expect, it } from 'vitest'
|
|
|
|
it('should have sourcemaps', () => {
|
|
expect('\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9').toBeTruthy()
|
|
expect("\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9").toBeTruthy()
|
|
expect(`\n//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9`).toBeTruthy()
|
|
})
|