qa-shadow-report
Version:
npm package that prints formatted test reports into a google sheet or csv file
12 lines (10 loc) • 325 B
JavaScript
import { jest } from '@jest/globals';
import { isProjectConfigured } from './configuredStatus.js';
describe('Project Configuration Status', () => {
describe('isProjectConfigured', () => {
it('should return false', () => {
const result = isProjectConfigured();
expect(result).toBe(false);
});
});
});