forked from sindresorhus/write-json-file
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
37 lines (32 loc) · 1.35 KB
/
test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import path from 'path';
import fs from 'fs';
import test from 'ava';
import tempfile from 'tempfile';
import m from '.';
test('async', async t => {
const tmp = path.join(tempfile(), 'foo');
await m(tmp, {foo: true}, {indent: 2});
t.is(fs.readFileSync(tmp, 'utf8'), '{\n "foo": true\n}\n');
});
test('sync', t => {
const tmp = path.join(tempfile(), 'foo');
m.sync(tmp, {foo: true}, {detectIndent: true, indent: 2});
t.is(fs.readFileSync(tmp, 'utf8'), '{\n "foo": true\n}\n');
});
test('detect indent', async t => {
const tmp = path.join(tempfile(), 'foo');
await m(tmp, {foo: true}, {indent: 2});
await m(tmp, {foo: true, bar: true, foobar: true}, {detectIndent: true});
t.is(fs.readFileSync(tmp, 'utf8'), '{\n "foo": true,\n "bar": true,\n "foobar": true\n}\n');
});
test('detect indent synchronously', t => {
const tmp = path.join(tempfile(), 'foo');
m.sync(tmp, {foo: true}, {indent: 2});
m.sync(tmp, {foo: true, bar: true, foobar: true}, {detectIndent: true});
t.is(fs.readFileSync(tmp, 'utf8'), '{\n "foo": true,\n "bar": true,\n "foobar": true\n}\n');
});
test('fall back to default indent if file doesn\'t exist', async t => {
const tmp = path.join(tempfile(), 'foo');
await m(tmp, {foo: true, bar: true, foobar: true}, {detectIndent: true});
t.is(fs.readFileSync(tmp, 'utf8'), '{\n\t"foo": true,\n\t"bar": true,\n\t"foobar": true\n}\n');
});