Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix quick transfer tests
Browse files Browse the repository at this point in the history
jerader committed Jan 29, 2025
1 parent c5535c9 commit 5093290
Showing 6 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -123,7 +123,7 @@ describe('AirGap', () => {
expect(vi.mocked(InputField)).toHaveBeenCalledWith(
{
title: 'Air gap volume (µL)',
error: 'Value must be between 1-180',
error: 'Value must be between 1 to 180',
readOnly: true,
type: 'number',
value: 0,
@@ -152,7 +152,7 @@ describe('AirGap', () => {
expect(vi.mocked(InputField)).toHaveBeenCalledWith(
{
title: 'Air gap volume (µL)',
error: 'Value must be between 1-80',
error: 'Value must be between 1 to 80',
readOnly: true,
type: 'number',
value: 0,
@@ -179,7 +179,7 @@ describe('AirGap', () => {
expect(vi.mocked(InputField)).toHaveBeenCalledWith(
{
title: 'Air gap volume (µL)',
error: 'Value must be between 1-140',
error: 'Value must be between 1 to 140',
readOnly: true,
type: 'number',
value: 0,
@@ -204,7 +204,7 @@ describe('AirGap', () => {
expect(vi.mocked(InputField)).toHaveBeenCalledWith(
{
title: 'Air gap volume (µL)',
error: 'Value must be between 1-200',
error: 'Value must be between 1 to 200',
readOnly: true,
type: 'number',
value: 0,
Original file line number Diff line number Diff line change
@@ -132,7 +132,7 @@ describe('Delay', () => {
expect(vi.mocked(InputField)).toHaveBeenCalledWith(
{
title: 'Delay duration (seconds)',
error: 'Value must be between 1-9999999999',
error: 'Value must be between 1 to 9999999999',
readOnly: true,
type: 'number',
value: 0,
@@ -158,7 +158,7 @@ describe('Delay', () => {
expect(vi.mocked(InputField)).toHaveBeenCalledWith(
{
title: 'Delay position from bottom of well (mm)',
error: 'Value must be between 1-100',
error: 'Value must be between 1 to 100',
readOnly: true,
type: 'number',
value: 0,
@@ -188,7 +188,7 @@ describe('Delay', () => {
expect(vi.mocked(InputField)).toHaveBeenCalledWith(
{
title: 'Delay position from bottom of well (mm)',
error: 'Value must be between 1-400',
error: 'Value must be between 1 to 400',
readOnly: true,
type: 'number',
value: 0,
Original file line number Diff line number Diff line change
@@ -133,7 +133,7 @@ describe('FlowRate', () => {
expect(vi.mocked(InputField)).toHaveBeenCalledWith(
{
title: 'Aspirate flow rate (µL/s)',
error: 'Value must be between 1-92',
error: 'Value must be between 1 to 92',
readOnly: true,
type: 'number',
value: 0,
Original file line number Diff line number Diff line change
@@ -132,7 +132,7 @@ describe('Mix', () => {
expect(vi.mocked(InputField)).toHaveBeenCalledWith(
{
title: 'Mix volume (µL)',
error: 'Value must be between 1-200',
error: 'Value must be between 1 to 200',
readOnly: true,
type: 'number',
value: 0,
@@ -158,7 +158,7 @@ describe('Mix', () => {
expect(vi.mocked(InputField)).toHaveBeenCalledWith(
{
title: 'Mix repetitions',
error: 'Value must be between 1-999',
error: 'Value must be between 1 to 999',
readOnly: true,
type: 'number',
value: 0,
Original file line number Diff line number Diff line change
@@ -196,7 +196,7 @@ describe('PipettePath', () => {
expect(vi.mocked(InputField)).toHaveBeenCalledWith(
{
title: 'Disposal volume (µL)',
error: 'Value must be between 1-160',
error: 'Value must be between 1 to 160',
readOnly: true,
type: 'number',
value: 201,
Original file line number Diff line number Diff line change
@@ -161,7 +161,7 @@ describe('VolumeEntry', () => {
expect(vi.mocked(InputField)).toHaveBeenCalledWith(
{
title: 'Aspirate volume per well (µL)',
error: 'Value must be between 5-50',
error: 'Value must be between 5 to 50',
readOnly: true,
type: 'text',
value: '90',

0 comments on commit 5093290

Please sign in to comment.