This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"meta": { "theme": "professional" }, | |
"basics": { | |
"name": "Uttam Gelot", | |
"label": "Full-Stack Developer / Engineering Director", | |
"image": "", | |
"email": "uttammali1137@gmail.com", | |
"phone": "+91 7203919938", | |
"url": "https://github.com/uttam-gelot", | |
"summary": "Full-Stack Developer with 4.5+ years of experience in architecting scalable microservices, REST APIs, and enterprise integrations. Skilled in Node.js, TypeScript, AWS and modern CI/CD, with a proven record of delivering high-impact solutions across e-commerce, IoT, and automotive domains. Specialises in performance optimisation and problem-solving.", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Test } from '@nestjs/testing' | |
import { Pact } from '@pact-foundation/pact' | |
import { PactFactory } from 'nestjs-pact' | |
import { lastValueFrom } from 'rxjs' | |
import { ShippingMethodUtilService } from '../../shipping-method-util/shipping-method-util.service' | |
import { WmsService } from '../../wms/wms.service' | |
import { PactModules } from '../common/pact-test.modules' | |
import { PactNames } from '../pact.service' | |
jest.setTimeout(20000) |