Skip to content

Commit

Permalink
Failing chart test :D
Browse files Browse the repository at this point in the history
  • Loading branch information
joyliu-q committed Oct 22, 2023
1 parent e276cef commit e0f9115
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion cdk/kittyhawk/test/cronjob.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Construct } from "constructs";
import cronTime from "cron-time-generator";
import { CronJob } from "../src/cronjob";
import { chartTest } from "./utils";
import { chartTest, failingTestNoGitSha } from "./utils";

export function buildCronjobVolumeChart(scope: Construct) {
/** Tests a Cronjob with a volume. */
Expand Down Expand Up @@ -35,3 +35,6 @@ export function buildCronjobLimitsChart(scope: Construct) {
test("Cron Job with volume", () => chartTest(buildCronjobVolumeChart));

test("Cron Job with limits", () => chartTest(buildCronjobLimitsChart));

test("Cron Job -- No Git Sha", () =>
failingTestNoGitSha(buildCronjobVolumeChart));

0 comments on commit e0f9115

Please sign in to comment.