Updated back unit test
gitea/salix/pipeline/head This commit looks good
Details
gitea/salix/pipeline/head This commit looks good
Details
This commit is contained in:
parent
b6f29d205c
commit
136c127cae
|
@ -2,24 +2,18 @@ const app = require('vn-loopback/server/server');
|
||||||
|
|
||||||
describe('campaign latest()', () => {
|
describe('campaign latest()', () => {
|
||||||
it('should return the campaigns from the last year', async() => {
|
it('should return the campaigns from the last year', async() => {
|
||||||
let result = await app.models.Campaign.latest();
|
const now = new Date();
|
||||||
|
const result = await app.models.Campaign.latest();
|
||||||
const lastYearDate = new Date();
|
|
||||||
lastYearDate.setFullYear(lastYearDate.getFullYear() - 1);
|
|
||||||
const lastYear = lastYearDate.getFullYear();
|
|
||||||
|
|
||||||
const randomIndex = Math.floor(Math.random() * result.length);
|
const randomIndex = Math.floor(Math.random() * result.length);
|
||||||
const campaignDated = result[randomIndex].dated;
|
const campaignDated = result[randomIndex].dated;
|
||||||
const campaignYear = campaignDated.getFullYear();
|
|
||||||
|
|
||||||
expect(result.length).toEqual(3);
|
expect(result.length).toEqual(3);
|
||||||
expect(campaignYear).toEqual(lastYear);
|
expect(campaignDated).toBeLessThanOrEqual(now);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should return the campaigns from the current year', async() => {
|
it('should return the campaigns from the current year', async() => {
|
||||||
const currentDate = new Date();
|
const now = new Date();
|
||||||
const currentYear = currentDate.getFullYear();
|
const currentYear = now.getFullYear();
|
||||||
|
|
||||||
const result = await app.models.Campaign.latest({
|
const result = await app.models.Campaign.latest({
|
||||||
where: {dated: {like: `%${currentYear}%`}}
|
where: {dated: {like: `%${currentYear}%`}}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue