refactor: rename test files and update import paths for postman-to-bruno tests

This commit is contained in:
Pragadesh-45 2025-04-22 15:19:04 +05:45
parent 4c23ab5664
commit 6a7750d354
3 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
import { describe, it, expect } from '@jest/globals';
import postmanToBruno from '../../src/postman/postman-to-bruno';
import postmanToBruno from '../../../src/postman/postman-to-bruno';
describe('postman-collection', () => {
it('should correctly import a valid Postman collection file', async () => {

View File

@ -1,4 +1,4 @@
const { default: postmanTranslation } = require("../../../src/postman/postman-translations");
const { default: postmanTranslation } = require("../../../../src/postman/postman-translations");
describe('postmanTranslations - request commands', () => {
test('should handle request commands', () => {

View File

@ -1,4 +1,4 @@
const { default: postmanTranslation } = require("../../../src/postman/postman-translations");
const { default: postmanTranslation } = require("../../../../src/postman/postman-translations");
describe('postmanTranslations - response commands', () => {
test('should handle response commands', () => {