-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.js
46 lines (38 loc) · 898 Bytes
/
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
38
39
40
41
42
43
44
45
46
/**
* Node dependencies
*/
const { resolve } = require('path');
const { existsSync, mkdirSync } = require('fs');
/**
* Test environment
*/
const DIR = './tmp';
const NAME = 'ga-local.js';
const tape = require('tape');
const { localga, ANALYTICS_FILE_NAME } = require('./');
/**
* Init
*/
if (!existsSync(DIR)) {
mkdirSync(DIR);
}
tape('LocalGA unit tests', async t => {
await localga({
id: 'UA-83446952-1',
folder: DIR,
name: NAME
});
const masterFile = resolve(__dirname, `${DIR}/${NAME}`);
const masterFileExists = existsSync(masterFile);
const helperFile = resolve(__dirname, `${DIR}/${ANALYTICS_FILE_NAME}`);
const helperFileExists = existsSync(helperFile);
/**
* Test if a master file is created
*/
t.ok(masterFileExists, `${NAME} exists`);
/**
* Test if a helper file is created
*/
t.ok(helperFileExists, `${ANALYTICS_FILE_NAME} exists`);
t.end();
});