mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-15 21:57:22 +01:00
* Sleep status is tracked by analytics when toggled. * Modify test: test that analytics is called with 'sleep' event and data passed includes the user's new sleep status
38 lines
1.0 KiB
JavaScript
38 lines
1.0 KiB
JavaScript
import {
|
|
generateUser,
|
|
} from '../../../../helpers/api-integration/v3';
|
|
import { mockAnalyticsService as analytics } from '../../../../../website/server/libs/analyticsService';
|
|
|
|
describe('POST /user/sleep', () => {
|
|
let user;
|
|
|
|
beforeEach(async () => {
|
|
user = await generateUser();
|
|
});
|
|
|
|
// More tests in common code unit tests
|
|
|
|
it('toggles sleep status', async () => {
|
|
let res = await user.post('/user/sleep');
|
|
expect(res).to.eql(true);
|
|
await user.sync();
|
|
expect(user.preferences.sleep).to.be.true;
|
|
|
|
let res2 = await user.post('/user/sleep');
|
|
expect(res2).to.eql(false);
|
|
await user.sync();
|
|
expect(user.preferences.sleep).to.be.false;
|
|
});
|
|
|
|
it('sends sleep status to analytics service', async () => {
|
|
sandbox.spy(analytics, 'track');
|
|
|
|
await user.post('/user/sleep');
|
|
await user.sync();
|
|
expect(analytics.track).to.be.calledOnce;
|
|
expect(analytics.track).to.be.calledWith('sleep', sandbox.match.has('status', user.preferences.sleep));
|
|
|
|
sandbox.restore();
|
|
});
|
|
});
|