We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec4e223 commit 7855d2dCopy full SHA for 7855d2d
test/nameValidator.spec.ts
@@ -8,7 +8,7 @@ describe('NameValidator', () => {
8
expect(NameValidator.validateNotebookName('123')).toBeFalsy();
9
});
10
11
- it('should not map to an error message with empty or whitespace names', () => {
+ it('should map to an error message with empty or whitespace names', () => {
12
expect(NameValidator.validateNotebookName('')).toBeTruthy();
13
expect(NameValidator.validateNotebookName(' ')).toBeTruthy();
14
0 commit comments