aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/lib.test.ts12
1 files changed, 7 insertions, 5 deletions
diff --git a/tests/lib.test.ts b/tests/lib.test.ts
index 407d1d1..4810c55 100644
--- a/tests/lib.test.ts
+++ b/tests/lib.test.ts
@@ -1,12 +1,14 @@
+import {moduloPositive, intToOrdinal, getNumTrailingZeros} from '/src/util.ts';
import {
- moduloPositive, intToOrdinal, getNumTrailingZeros,
- gregorianToJdn, julianToJdn, jdnToGregorian, jdnToJulian, gregorianToJulian, julianToGregorian, getDaysInMonth,
- YearDate, CalDate, dateToDisplayStr, boundedDateToStr, HistEvent,
+ gregorianToJdn, julianToJdn, jdnToGregorian, jdnToJulian, julianToGregorian, gregorianToJulian, getDaysInMonth,
+ YearDate, CalDate,
+ HistEvent,
+ dateToDisplayStr, boundedDateToStr,
queryServer, jsonToHistDate, jsonToHistEvent,
DAY_SCALE, MONTH_SCALE, stepDate, inDateScale, getScaleRatio, getUnitDiff,
- getEventPrecision, dateToUnit, dateToScaleDate,
+ getEventPrecision, dateToUnit, dateToScaleDate,
DateRangeTree,
-} from '/src/lib.ts'
+} from '/src/lib.ts';
// ========== General utility functions ==========