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 = {
id: 1,
title: 'Vulnerability Title',
description: 'Vulnerability Description',
created_at: new Date().toISOString(),
created_at: new Date(2020, 0, 1).toISOString(),
severity: 'medium',
state: 'detected',
pipeline: {
id: 2,
created_at: new Date().toISOString(),
created_at: new Date(2020, 0, 1).toISOString(),
},
project: {
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