diff --git a/src/utils/__tests__/cssDimensions.test.js b/src/utils/__tests__/cssDimensions.test.js index 9e7e24c..af14ab6 100644 --- a/src/utils/__tests__/cssDimensions.test.js +++ b/src/utils/__tests__/cssDimensions.test.js @@ -14,8 +14,10 @@ See the License for the specific language governing permissions and limitations under the License. */ -import { test } from 'vitest'; +import { expect, test } from 'vitest'; +import { ensureUnit } from '../cssDimensions'; test.for([ ])('ensureUnit returns $expected with input $dimension', ({ dimension, expected }) => { + expect(ensureUnit(dimension)).toBe(expected); }); \ No newline at end of file