mirror of
http://124.126.16.154:8888/singularity/hdk-pay.git
synced 2026-01-15 05:55:08 +08:00
test(product): 移除测试中的 only 标记
- 移除了 QueryPointRateTest 中两个测试用例的 only 标记 - 确保所有测试用例都能正常执行 - 避免因 only 标记导致其他测试被跳过
This commit is contained in:
@@ -23,7 +23,7 @@ it('can query point rate', function () {
|
|||||||
|
|
||||||
$rate = $repo->getRate($from, $to, $uid);
|
$rate = $repo->getRate($from, $to, $uid);
|
||||||
expect($rate)->toBeFloat();
|
expect($rate)->toBeFloat();
|
||||||
})->only();
|
});
|
||||||
|
|
||||||
it('can query point rate with uid', function () {
|
it('can query point rate with uid', function () {
|
||||||
$repo = make(ProductRepo::class);
|
$repo = make(ProductRepo::class);
|
||||||
@@ -35,4 +35,4 @@ it('can query point rate with uid', function () {
|
|||||||
|
|
||||||
$rate = $repo->getRate($from, $to, $uid);
|
$rate = $repo->getRate($from, $to, $uid);
|
||||||
expect($rate)->toBeFloat();
|
expect($rate)->toBeFloat();
|
||||||
})->only();
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user