mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 08:27:46 +00:00
Everywhere: Behaviour => Behavior
This commit is contained in:
parent
55b0b06897
commit
6ad427993a
48 changed files with 120 additions and 120 deletions
|
@ -22,7 +22,7 @@ test("length is 2", () => {
|
|||
});
|
||||
});
|
||||
|
||||
describe("normal behaviour", () => {
|
||||
describe("normal behavior", () => {
|
||||
test("Noop", () => {
|
||||
TYPED_ARRAYS.forEach(T => {
|
||||
const array = new T([1, 2]);
|
||||
|
@ -37,7 +37,7 @@ describe("normal behaviour", () => {
|
|||
});
|
||||
});
|
||||
|
||||
test("basic behaviour", () => {
|
||||
test("basic behavior", () => {
|
||||
TYPED_ARRAYS.forEach(T => {
|
||||
const array = new T([1, 2, 3]);
|
||||
expect(array.copyWithin(1, 2)).toEqual(array);
|
||||
|
|
|
@ -112,7 +112,7 @@ describe("errors", () => {
|
|||
});
|
||||
});
|
||||
|
||||
describe("normal behaviour", () => {
|
||||
describe("normal behavior", () => {
|
||||
test("never calls callback with empty array", () => {
|
||||
TYPED_ARRAYS.forEach(T => {
|
||||
let callbackCalled = 0;
|
||||
|
|
|
@ -44,7 +44,7 @@ describe("errors", () => {
|
|||
BIGINT_TYPED_ARRAYS.forEach(T => errorTests(T));
|
||||
});
|
||||
|
||||
describe("normal behaviour", () => {
|
||||
describe("normal behavior", () => {
|
||||
test("basic functionality", () => {
|
||||
TYPED_ARRAYS.forEach(T => {
|
||||
const typedArray = new T([1, 2, 3]);
|
||||
|
|
|
@ -44,7 +44,7 @@ describe("errors", () => {
|
|||
BIGINT_TYPED_ARRAYS.forEach(T => errorTests(T));
|
||||
});
|
||||
|
||||
describe("normal behaviour", () => {
|
||||
describe("normal behavior", () => {
|
||||
test("basic functionality", () => {
|
||||
TYPED_ARRAYS.forEach(T => {
|
||||
const typedArray = new T([1, 2, 3]);
|
||||
|
|
|
@ -44,7 +44,7 @@ describe("errors", () => {
|
|||
BIGINT_TYPED_ARRAYS.forEach(T => errorTests(T));
|
||||
});
|
||||
|
||||
describe("normal behaviour", () => {
|
||||
describe("normal behavior", () => {
|
||||
test("basic functionality", () => {
|
||||
TYPED_ARRAYS.forEach(T => {
|
||||
const typedArray = new T([1, 2, 3]);
|
||||
|
|
|
@ -44,7 +44,7 @@ describe("errors", () => {
|
|||
BIGINT_TYPED_ARRAYS.forEach(T => errorTests(T));
|
||||
});
|
||||
|
||||
describe("normal behaviour", () => {
|
||||
describe("normal behavior", () => {
|
||||
test("basic functionality", () => {
|
||||
TYPED_ARRAYS.forEach(T => {
|
||||
const typedArray = new T([1, 2, 3]);
|
||||
|
|
|
@ -44,7 +44,7 @@ describe("errors", () => {
|
|||
BIGINT_TYPED_ARRAYS.forEach(T => errorTests(T));
|
||||
});
|
||||
|
||||
describe("normal behaviour", () => {
|
||||
describe("normal behavior", () => {
|
||||
test("never calls callback with empty array", () => {
|
||||
function emptyTest(T) {
|
||||
var callbackCalled = 0;
|
||||
|
|
|
@ -144,7 +144,7 @@ describe("errors", () => {
|
|||
});
|
||||
});
|
||||
|
||||
describe("normal behaviour", () => {
|
||||
describe("normal behavior", () => {
|
||||
test("never calls callback with empty array", () => {
|
||||
TYPED_ARRAYS.forEach(T => {
|
||||
let callbackCalled = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue