We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2b0ab1 commit 8aec4a9Copy full SHA for 8aec4a9
1-js/04-object-basics/01-object/8-multiply-numeric/_js.view/test.js
@@ -1,17 +1,17 @@
1
describe("multiplyNumeric", function() {
2
- it("multiplies all numeric properties by 2", function() {
+ it("multiplica todas as propriedades numéricas por 2", function() {
3
let menu = {
4
width: 200,
5
height: 300,
6
- title: "My menu"
+ title: "O meu menu"
7
};
8
let result = multiplyNumeric(menu);
9
assert.equal(menu.width, 400);
10
assert.equal(menu.height, 600);
11
- assert.equal(menu.title, "My menu");
+ assert.equal(menu.title, "O meu menu");
12
});
13
14
- it("returns nothing", function() {
+ it("não retorna nada", function() {
15
assert.isUndefined( multiplyNumeric({}) );
16
17
0 commit comments