fix(core): update

This commit is contained in:
2018-10-28 23:29:45 +01:00
parent febf6c1911
commit fcb12d5734
9 changed files with 1129 additions and 53 deletions

View File

@ -1,27 +1,27 @@
import { expect, tap } from 'tapbundle'
import { expect, tap } from '@pushrocks/tapbundle';
import * as smartanalytics from '../ts/index'
import * as smartanalytics from '../ts/index';
let testAnalytics: smartanalytics.Analytics
let testAnalytics: smartanalytics.Analytics;
tap.test('should create a valid AnalyticsAccount', async () => {
testAnalytics = new smartanalytics.Analytics({
projectId: 'sandbox',
appName: 'smartanalytics',
apiEndPoint: 'https://pubapi-1.lossless.one/analytics'
})
})
apiEndPoint: 'https://pubapi.lossless.one/analytics'
});
});
tap.test('should send a request to Lossless API endpoint', async () => {
let doit = async () => {
await testAnalytics.recordEvent('sandbox', {
trackingPurpose: 'test'
})
});
await testAnalytics.recordEvent('sandbox', {
someValue: 'someData'
})
}
doit()
})
});
};
doit();
});
tap.start()
tap.start();