Commit a8b60286 authored by Paul Slaughter's avatar Paul Slaughter

Update `new Date()` with deterministic value

parent 77f5dfd3
...@@ -2,12 +2,12 @@ export const mockVulnerability = { ...@@ -2,12 +2,12 @@ export const mockVulnerability = {
id: 1, id: 1,
title: 'Vulnerability Title', title: 'Vulnerability Title',
description: 'Vulnerability Description', description: 'Vulnerability Description',
created_at: new Date().toISOString(), created_at: new Date(2020, 0, 1).toISOString(),
severity: 'medium', severity: 'medium',
state: 'detected', state: 'detected',
pipeline: { pipeline: {
id: 2, id: 2,
created_at: new Date().toISOString(), created_at: new Date(2020, 0, 1).toISOString(),
}, },
project: { project: {
full_path: '/project_full_path', full_path: '/project_full_path',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment