Skip to content

Commit

Permalink
Fix tests for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Wesley Walser committed Jan 27, 2022
1 parent 4c63186 commit bdf6ba3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ describe("Pipeline", () => {
redirects: {},
activePromotions: [],
featureScoreWeight: 0,
banners: undefined,
});

expect(fetchMock.mock.calls.length).toEqual(1);
Expand Down Expand Up @@ -97,6 +98,7 @@ describe("Pipeline", () => {

expect(values).toEqual({});
expect(response).toStrictEqual({
banners: undefined,
time: 0.003,
totalResults: 0,
results: [],
Expand Down Expand Up @@ -146,6 +148,7 @@ describe("Pipeline", () => {

expect(values).toEqual({});
expect(response).toStrictEqual({
banners: undefined,
time: 0.003,
totalResults: 1,
results: [
Expand Down Expand Up @@ -214,6 +217,7 @@ describe("Pipeline", () => {

expect(values).toEqual({});
expect(response).toStrictEqual({
banners: undefined,
time: 0.003,
totalResults: 2,
results: [
Expand Down Expand Up @@ -343,6 +347,7 @@ describe("Pipeline", () => {

expect(values).toEqual({});
expect(response).toStrictEqual({
banners: undefined,
time: 0.003,
totalResults: 3,
results: [
Expand Down Expand Up @@ -457,6 +462,7 @@ describe("Pipeline", () => {

expect(values).toEqual({});
expect(response).toStrictEqual({
banners: undefined,
time: 0.003,
totalResults: 1,
results: [
Expand Down

0 comments on commit bdf6ba3

Please sign in to comment.