Skip to content

Commit bfc2ce1

Browse files
committed
updated test unit
1 parent c8c14c7 commit bfc2ce1

6 files changed

+6
-6
lines changed

tests/unit/number-format.custom.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import NumberFormat from '../../src/number-format'
1+
import { NumberFormat } from '../../src'
22

33
test('when the value is invalid with custom config', () => {
44
const numberFormat = new NumberFormat({

tests/unit/number-format.custom.unformat.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import NumberFormat from '../../src/number-format'
1+
import { NumberFormat } from '../../src'
22

33
test('unformat when options are default', () => {
44
const numberFormat = new NumberFormat({

tests/unit/number-format.default.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import NumberFormat from '../../src/number-format'
1+
import { NumberFormat } from '../../src'
22

33
test('when the value is invalid with default config', () => {
44
const numberFormat = new NumberFormat({})

tests/unit/number-format.default.unformat.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import NumberFormat from '../../src/number-format'
1+
import { NumberFormat } from '../../src'
22

33
test('unformat when options are default', () => {
44
const numberFormat = new NumberFormat({})

tests/unit/number-format.reverseFill.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import NumberFormat from '../../src/number-format'
1+
import { NumberFormat } from '../../src'
22

33
test('when enabled reverse fill', () => {
44
const numberFormat = new NumberFormat({

tests/unit/number-format.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import NumberFormat from '../../src/number-format'
1+
import { NumberFormat } from '../../src'
22

33
test('test number format', async () => {
44
const number = new NumberFormat({

0 commit comments

Comments
 (0)