We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf950d0 commit fbd43a0Copy full SHA for fbd43a0
test/mutation.ts
@@ -145,7 +145,12 @@ describe('Bigtable/Mutation', () => {
145
assert.strictEqual(decoded.toString(), message);
146
});
147
148
- it('should not create a new Buffer needlessly', () => {
+ it('should not create a new Buffer needlessly', function () {
149
+ if (process.platform === 'win32') {
150
+ // stubbing Buffer.from does not work on Windows since sinon 15.1.0
151
+ // TODO(@alexander-fenster): investigate and report or fix
152
+ this.skip();
153
+ }
154
const message = 'Hello!';
155
const encoded = Buffer.from(message);
156
const stub = sandbox.stub(Buffer, 'from');
0 commit comments