Built distribution

This commit is contained in:
Steve Gravrock
2020-01-11 14:29:24 -08:00
parent fffb8abb24
commit 8a5216401f
4 changed files with 8 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
/* /*
Copyright (c) 2008-2019 Pivotal Labs Copyright (c) 2008-2020 Pivotal Labs
Permission is hereby granted, free of charge, to any person obtaining Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the a copy of this software and associated documentation files (the

View File

@@ -1,5 +1,5 @@
/* /*
Copyright (c) 2008-2019 Pivotal Labs Copyright (c) 2008-2020 Pivotal Labs
Permission is hereby granted, free of charge, to any person obtaining Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the a copy of this software and associated documentation files (the

View File

@@ -1,5 +1,5 @@
/* /*
Copyright (c) 2008-2019 Pivotal Labs Copyright (c) 2008-2020 Pivotal Labs
Permission is hereby granted, free of charge, to any person obtaining Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the a copy of this software and associated documentation files (the
@@ -6658,6 +6658,9 @@ getJasmineRequireObj().interface = function(jasmine, env) {
* Define a single spec. A spec should contain one or more {@link expect|expectations} that test the state of the code. * Define a single spec. A spec should contain one or more {@link expect|expectations} that test the state of the code.
* *
* A spec whose expectations all succeed will be passing and a spec with any failures will fail. * A spec whose expectations all succeed will be passing and a spec with any failures will fail.
* The name `it` is a pronoun for the test target, not an abbreviation of anything. It makes the
* spec more readable by connecting the function name `it` and the argument `description` as a
* complete sentence.
* @name it * @name it
* @since 1.3.0 * @since 1.3.0
* @function * @function
@@ -7787,7 +7790,7 @@ getJasmineRequireObj().StackTrace = function(j$) {
} }
function messagePrefixLength(message, stackLines) { function messagePrefixLength(message, stackLines) {
if (!stackLines[0].match(/^Error/)) { if (!stackLines[0].match(/^\w*Error/)) {
return 0; return 0;
} }

View File

@@ -1,5 +1,5 @@
/* /*
Copyright (c) 2008-2019 Pivotal Labs Copyright (c) 2008-2020 Pivotal Labs
Permission is hereby granted, free of charge, to any person obtaining Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the a copy of this software and associated documentation files (the