<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Mehrdad Shobeyri</title>
    <description>The latest articles on DEV Community by Mehrdad Shobeyri (@mehrdad_shobeyri_6c61065d).</description>
    <link>https://dev.to/mehrdad_shobeyri_6c61065d</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3603686%2F142063aa-ea46-4064-bd8a-ab3f1199b338.jpg</url>
      <title>DEV Community: Mehrdad Shobeyri</title>
      <link>https://dev.to/mehrdad_shobeyri_6c61065d</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mehrdad_shobeyri_6c61065d"/>
    <language>en</language>
    <item>
      <title>Don't lock API tests in Postman anymore.</title>
      <dc:creator>Mehrdad Shobeyri</dc:creator>
      <pubDate>Mon, 25 May 2026 18:55:15 +0000</pubDate>
      <link>https://dev.to/mehrdad_shobeyri_6c61065d/dont-lock-api-tests-in-postman-anymore-3bnf</link>
      <guid>https://dev.to/mehrdad_shobeyri_6c61065d/dont-lock-api-tests-in-postman-anymore-3bnf</guid>
      <description>&lt;p&gt;Postman gives you a nice UI, but stores your tests in a cloud account you don't own. Cancel your subscription; your test history goes with it. Export is possible — but good luck diffing a 40MB JSON blob in a PR.&lt;br&gt;
Bruno gets the Git-native part right, but the flow is hidden in JavaScript callbacks. New teammates can't read it. AI tools can't reason about it.&lt;/p&gt;

&lt;p&gt;Robot Framework is powerful for CI, but has no real UI for manual runs.&lt;/p&gt;

&lt;p&gt;The root problem: the test is not a file.&lt;/p&gt;

&lt;p&gt;I built Multimeter so one .mmt YAML file works as a manual test in VS Code, an automated test in CI, a load test, and a mock server definition — stored in Git, reviewable in PRs, readable by LLMs.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight yaml"&gt;&lt;code&gt;  &lt;span class="na"&gt;type&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;test&lt;/span&gt;
  &lt;span class="na"&gt;steps&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
    &lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;http&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;https://api.example.com/login&lt;/span&gt;
      &lt;span class="na"&gt;method&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;post&lt;/span&gt;
      &lt;span class="na"&gt;body&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s1"&gt;'&lt;/span&gt;&lt;span class="s"&gt;{&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;"email":&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;"alice@example.com",&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;"password":&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;"secret"&lt;/span&gt;&lt;span class="nv"&gt; &lt;/span&gt;&lt;span class="s"&gt;}'&lt;/span&gt;
      &lt;span class="na"&gt;expect&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
        &lt;span class="na"&gt;status&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="m"&gt;200&lt;/span&gt;
        &lt;span class="na"&gt;body.token&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="kt"&gt;!=&lt;/span&gt; &lt;span class="kc"&gt;null&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;npx testlight run login.mmt in CI. Flowchart UI in VS Code. Same file. No sync. Free and fully offline.&lt;/p&gt;

&lt;p&gt;GitHub: &lt;a href="https://github.com/mshobeyri/multimeter" rel="noopener noreferrer"&gt;https://github.com/mshobeyri/multimeter&lt;/a&gt; &lt;br&gt;
Demos: &lt;a href="https://mmt.dev/demos" rel="noopener noreferrer"&gt;https://mmt.dev/demos&lt;/a&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>postman</category>
      <category>testing</category>
      <category>programming</category>
    </item>
    <item>
      <title>Multimeter</title>
      <dc:creator>Mehrdad Shobeyri</dc:creator>
      <pubDate>Mon, 10 Nov 2025 05:21:13 +0000</pubDate>
      <link>https://dev.to/mehrdad_shobeyri_6c61065d/multimeter-2d3l</link>
      <guid>https://dev.to/mehrdad_shobeyri_6c61065d/multimeter-2d3l</guid>
      <description>&lt;p&gt;&lt;strong&gt;Introduction&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;In modern software development, teams work with many HTTP and WebSocket services. Having a simple, version-controlled, and Git-friendly testing tool is increasingly important. That’s why I built Multimeter — a Visual Studio Code extension that allows you to write service tests as files in your Git repository, track changes, view results, and integrate into CI pipelines.&lt;/p&gt;

&lt;p&gt;Check it out on GitHub: &lt;a href="https://github.com/mshobeyri/multimeter" rel="noopener noreferrer"&gt;https://github.com/mshobeyri/multimeter&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why this project?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Many tools (E.g., Postman) are excellent, but often tests reside outside of the Git repository.&lt;br&gt;
With Multimeter, your tests become part of your codebase: versioned, branched, diffed.&lt;br&gt;
Goal: simplicity + integration for service-centric teams working in VS Code with HTTP &amp;amp; WebSocket endpoints.&lt;br&gt;
Writing tests can be easily outsourced to AI.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Features &amp;amp; Architecture&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Runs in VS Code: Webview UI for creating/editing tests.&lt;br&gt;
Defines a DSL (e.g., .mmt files) for test definitions in YAML.&lt;br&gt;
Stored in Git repository → full change history, branching, pull requests.&lt;br&gt;
Supports CI workflows: run tests and view results on merge/push.&lt;br&gt;
Supports both HTTP and WebSocket endpoints, making it well-suited for modern microservices.&lt;br&gt;
Auto-generate documents based on API specification.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Getting Started&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Install the Multimeter VS Code extension (or load it locally).&lt;br&gt;
Create your first test scenario: for example, “Register → Login → Fetch Data”.&lt;br&gt;
Run the test and inspect results directly in VS Code.&lt;br&gt;
Add tests to your repository. Commit them, open a pull request, review failures/changes.&lt;br&gt;
Challenges &amp;amp; What I Learned:&lt;/p&gt;

&lt;p&gt;Designing a DSL that’s expressive yet simple was harder than expected.&lt;br&gt;
Making Git integration seamless: showing diffs of test results/expectations and accommodating branches.&lt;br&gt;
UX in VS Code Webview: blending native feel, theming, performance.&lt;br&gt;
Building a community necessitates good docs, onboarding, and example scenarios.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How You Can Help&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;⭐ Give the GitHub repository a star — it helps visibility.&lt;br&gt;
If you’d like a new feature or found a bug, open an issue or submit a pull request.&lt;br&gt;
Share this article with your team or community if you work with API/WebSocket testing.&lt;br&gt;
If you use Multimeter, drop a comment in the repository with your scenario — your example could be featured.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What’s Next&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Planned features include: support for other protocols (gRPC, GraphQL), richer visual reports, Support for load testing, and improved CI integrations. If you’re working with service-testing and version control, I hope Multimeter becomes part of your workflow. Let’s build this tool together.&lt;/p&gt;

</description>
      <category>testing</category>
      <category>postman</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
