We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7c4eb7 commit a638cffCopy full SHA for a638cff
packages/firestore/test/unit/specs/describe_spec.ts
@@ -15,7 +15,7 @@
15
* limitations under the License.
16
*/
17
18
-import * as stringify from 'json-stable-stringify';
+import stringify from 'json-stable-stringify';
19
import { ExclusiveTestFunction, PendingTestFunction } from 'mocha';
20
21
import { queryEquals, QueryImpl } from '../../../src/core/query';
@@ -252,7 +252,7 @@ export function describeSpec(
252
// Note: We use json-stable-stringify instead of JSON.stringify() to ensure
253
// that the generated JSON does not produce diffs merely due to the order
254
// of the keys in an object changing.
255
- const output = stringify.default(specsInThisTest, {
+ const output = stringify(specsInThisTest, {
256
space: 2,
257
cmp: stringifyComparator
258
});
0 commit comments