Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
Bong Nguyen committed Nov 22, 2022
1 parent a7ecde5 commit a767d0a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/bindings/util.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ inline v8::Local<v8::Value> V8LocalValueFromJsValue(napi_value v) {
return local;
}

// End
// End
2 changes: 2 additions & 0 deletions test/js/text-buffer.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1069,6 +1069,7 @@ describe('TextBuffer', () => {
const random = new Random(seed)

const testDocument = new TestDocument(seed)
console.log('Seed: ', seed);
const buffer = new TextBuffer(testDocument.getText())

for (let j = 0; j < 10; j++) {
Expand Down Expand Up @@ -1466,6 +1467,7 @@ describe('TextBuffer', () => {
let seed = generateSeed(MAX_INT32)
const random = new Random(seed)
const testDocument = new TestDocument(seed)
console.log('Seed: ', seed);

const promises = []
const buffer = new TextBuffer(testDocument.getText())
Expand Down

0 comments on commit a767d0a

Please sign in to comment.