Skip to content

Commit fc6ec55

Browse files
committed
adds release prefix to tests for prestate and call tracer
Signed-off-by: Konstantina Blazhukova <konstantina.blajukova@gmail.com>
1 parent 88859aa commit fc6ec55

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/server/tests/acceptance/debug.spec.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ describe('@debug API Acceptance Tests', function () {
417417
});
418418

419419
describe('Call Tracer', () => {
420-
it('should trace a transaction using CallTracer with onlyTopCall=false', async function () {
420+
it('@release should trace a transaction using CallTracer with onlyTopCall=false', async function () {
421421
// Call debug_traceTransaction with CallTracer (default config)
422422
const result = await relay.call(DEBUG_TRACE_TRANSACTION, [
423423
createChildTx.hash,
@@ -433,7 +433,7 @@ describe('@debug API Acceptance Tests', function () {
433433
expect(result).to.have.property('calls');
434434
});
435435

436-
it('should trace a transaction using CallTracer with onlyTopCall=true', async function () {
436+
it('@release should trace a transaction using CallTracer with onlyTopCall=true', async function () {
437437
// Call debug_traceTransaction with CallTracer (default config)
438438
const result = await relay.call(DEBUG_TRACE_TRANSACTION, [
439439
createChildTx.hash,
@@ -452,7 +452,7 @@ describe('@debug API Acceptance Tests', function () {
452452
});
453453

454454
describe('PrestateTracer', () => {
455-
it('should trace a transaction using PrestateTracer', async function () {
455+
it('@release should trace a transaction using PrestateTracer', async function () {
456456
const result = await relay.call(DEBUG_TRACE_TRANSACTION, [createChildTx.hash, TRACER_CONFIGS.PRESTATE_TRACER]);
457457

458458
expect(result).to.be.an('object');
@@ -469,7 +469,7 @@ describe('@debug API Acceptance Tests', function () {
469469
}
470470
});
471471

472-
it('should trace a transaction using PrestateTracer with onlyTopCall=true', async function () {
472+
it('@release should trace a transaction using PrestateTracer with onlyTopCall=true', async function () {
473473
const result = await relay.call(DEBUG_TRACE_TRANSACTION, [
474474
createChildTx.hash,
475475
TRACER_CONFIGS.PRESTATE_TRACER_TOP_ONLY,
@@ -489,7 +489,7 @@ describe('@debug API Acceptance Tests', function () {
489489
}
490490
});
491491

492-
it('should trace a transaction using PrestateTracer with onlyTopCall=false', async function () {
492+
it('@release should trace a transaction using PrestateTracer with onlyTopCall=false', async function () {
493493
const result = await relay.call(DEBUG_TRACE_TRANSACTION, [
494494
createChildTx.hash,
495495
TRACER_CONFIGS.PRESTATE_TRACER_TOP_ONLY_FALSE,

0 commit comments

Comments
 (0)