From b2067d9ce0f945077c473706659dfa8beb85fbe4 Mon Sep 17 00:00:00 2001 From: Steve Gravrock Date: Sat, 2 Oct 2021 09:58:47 -0700 Subject: [PATCH] Fixed references to Env#trace in jsdocs --- lib/jasmine-core/jasmine.js | 4 ++-- src/core/Spec.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/jasmine-core/jasmine.js b/lib/jasmine-core/jasmine.js index b91f4ece..74bfe154 100644 --- a/lib/jasmine-core/jasmine.js +++ b/lib/jasmine-core/jasmine.js @@ -795,7 +795,7 @@ getJasmineRequireObj().Spec = function(j$) { * @property {String} status - Once the spec has completed, this string represents the pass/fail status of this spec. * @property {number} duration - The time in ms used by the spec execution, including any before/afterEach. * @property {Object} properties - User-supplied properties, if any, that were set using {@link Env#setSpecProperty} - * @property {TraceEntry[]|null} trace - Trace messages, if any, that were logged using {@link Env#trace} during a failing spec. + * @property {TraceEntry[]|null} trace - Trace messages, if any, that were logged using {@link jasmine.trace} during a failing spec. * @since 2.0.0 */ this.result = { @@ -991,7 +991,7 @@ getJasmineRequireObj().Spec = function(j$) { /** * @typedef TraceEntry - * @property {String} message - The message that was passed to {@link Env#trace}. + * @property {String} message - The message that was passed to {@link jasmine.trace}. * @property {number} timestamp - The time when the entry was added, in * milliseconds from the spec's start time */ diff --git a/src/core/Spec.js b/src/core/Spec.js index 458eb751..6198d24f 100644 --- a/src/core/Spec.js +++ b/src/core/Spec.js @@ -69,7 +69,7 @@ getJasmineRequireObj().Spec = function(j$) { * @property {String} status - Once the spec has completed, this string represents the pass/fail status of this spec. * @property {number} duration - The time in ms used by the spec execution, including any before/afterEach. * @property {Object} properties - User-supplied properties, if any, that were set using {@link Env#setSpecProperty} - * @property {TraceEntry[]|null} trace - Trace messages, if any, that were logged using {@link Env#trace} during a failing spec. + * @property {TraceEntry[]|null} trace - Trace messages, if any, that were logged using {@link jasmine.trace} during a failing spec. * @since 2.0.0 */ this.result = { @@ -265,7 +265,7 @@ getJasmineRequireObj().Spec = function(j$) { /** * @typedef TraceEntry - * @property {String} message - The message that was passed to {@link Env#trace}. + * @property {String} message - The message that was passed to {@link jasmine.trace}. * @property {number} timestamp - The time when the entry was added, in * milliseconds from the spec's start time */