问题标签 [nanoid]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
11 问题
0
投票
0
回答
15
浏览
flutter - 如何在 mocktail 中模拟 nanoid 的生成
我正在编写一个函数,该函数创建一个包含一些字段的用户,其中包括通过调用 nanoid() 生成的 id 'package:nanoid/nanoid.dart'
,并将其发送到 http 请求中。
我正在为此函数编写测试,并想检查user
我的 post 请求中的参数是否与我的预期相符。
我的测试失败,因为参数id
不匹配。因此,我需要模拟 nanoid 包以检查我的参数是否匹配。
我一直无法找到这样做的方法。