Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/unit-testing/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ However, if you want to configure SuiteCloud Unit Testing manually, do the follo
7. Create a `sample-test.js` file, inside of the `__tests__` folder, with the following content:
```javascript
describe('Basic jest test with simple assert', () => {
it('should assert stings are equal', () => {
it('should assert strings are equal', () => {
const a = 'foobar';
const b = 'foobar';
expect(a).toMatch(b);
Expand All @@ -62,7 +62,7 @@ to run your test. You should see an output similar to the following:
```
PASS __tests__/sample-test.js
Basic jest test with simple assert
√ should assert stings are equal (2ms)
√ should assert strings are equal (2ms)
```

**You successfully ran your first test for a SuiteCloud project!**
Expand Down