Skip to content

Commit b753ba4

Browse files
Tools don't handle template strings in names
1 parent 05fb42b commit b753ba4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/stress.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { SEQUENCE_TEST_SIZE, SIMULTANEOUS_TEST_SIZE, EXTRA_LONG_TIMEOUT } from '
88

99
describe('stress testing', () => {
1010
it(
11-
`should do ${SEQUENCE_TEST_SIZE} read connections in sequence`,
11+
'should do lots of read connections in sequence',
1212
async () => {
1313
let i = 1
1414
try {
@@ -33,7 +33,7 @@ describe('stress testing', () => {
3333
)
3434

3535
it(
36-
`should do ${SEQUENCE_TEST_SIZE} read and write connections in sequence`,
36+
'should do lots of read and write connections in sequence',
3737
async () => {
3838
let i = 1
3939
try {
@@ -59,7 +59,7 @@ describe('stress testing', () => {
5959
)
6060

6161
it(
62-
`should do ${SIMULTANEOUS_TEST_SIZE} read connections simultaneously`,
62+
'should do lots of read connections simultaneously',
6363
async () => {
6464
const startTime = Date.now()
6565
const connections: Database[] = []
@@ -97,7 +97,7 @@ describe('stress testing', () => {
9797
)
9898

9999
it(
100-
`should do ${SEQUENCE_TEST_SIZE} async database.sql reads in sequence`,
100+
'should do lots of async database.sql reads in sequence',
101101
async () => {
102102
const numQueries = 20
103103
const startTime = Date.now()

0 commit comments

Comments
 (0)