elearning/Frontend-Learner/node_modules/quasar/src/components/circular-progress/circular-progress.test.js
2026-01-13 10:48:02 +07:00

14 lines
449 B
JavaScript

import { describe, test, expect } from 'vitest'
import { useCircularCommonProps } from './circular-progress.js'
describe('[circularProgress API]', () => {
describe('[Variables]', () => {
describe('[(variable)useCircularCommonProps]', () => {
test('is defined correctly', () => {
expect(useCircularCommonProps).toBeTypeOf('object')
expect(Object.keys(useCircularCommonProps)).not.toHaveLength(0)
})
})
})
})