Skip to content

Commit

Permalink
[Tests] skip test that modifies the env in SES
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Jul 11, 2023
1 parent 387b967 commit 5b1a6c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ jobs:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
node-version:
- '14'
Expand Down
2 changes: 1 addition & 1 deletion test/tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -2825,7 +2825,7 @@ var es2015 = function ES2015(ES, ops, expectedMissing, skips) {
t.equal(ES.GetV(obj, 'a'), obj.a, 'returns property if it exists');
t.equal(ES.GetV(obj, 'b'), undefined, 'returns undefiend if property does not exist');

t.test('getter observability of the receiver', { skip: !defineProperty.oDP }, function (st) {
t.test('getter observability of the receiver', { skip: !defineProperty.oDP || !Object.isExtensible(Number.prototype) }, function (st) {
var receivers = [];

st.teardown(mockProperty(Number.prototype, 'foo', {
Expand Down

0 comments on commit 5b1a6c2

Please sign in to comment.