···1111if (import.meta.vitest) {
1212 const { test, expect } = import.meta.vitest
13131414- test('in source test running add function', () => {
1414+ // Name of the callback test function is checked in tests
1515+ test('in source test running add function', function customNamedTestFunction() {
1516 expect(add(10, 19)).toBe(29)
1617 })
1718}