Skip to content

Typo in Exercise 05_joinStrings from TheOdinProject/javascript-exercises #556

@Popovdn

Description

@Popovdn

There is a typo in the following file: javascript-exercises/05_joinStrings/joinStrings-example.spec.js

line 13:

The description of the test that checks if the last name is correct should be Stevenson instead of Carlos.

Right now it is:

  test('lastName is Carlos', () => {
    expect(values.lastName).toEqual('Stevenson');
  });

Should be:

  test('lastName is Stevenson', () => {
    expect(values.lastName).toEqual('Stevenson');
  });

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions