summaryrefslogtreecommitdiff
path: root/spec/frontend/notebook/mock_data.js
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-03-08 03:13:36 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2023-03-08 03:13:36 +0000
commitbdf7b581f80cf7119528eab0ac31e2c549563872 (patch)
tree23b20f65beb31a5ec35a273f9229e214eb8aa0bf /spec/frontend/notebook/mock_data.js
parent9c1accf52813b2b4b98ce85c9ec4a16fdbb86ee1 (diff)
downloadgitlab-ce-bdf7b581f80cf7119528eab0ac31e2c549563872.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/frontend/notebook/mock_data.js')
-rw-r--r--spec/frontend/notebook/mock_data.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/spec/frontend/notebook/mock_data.js b/spec/frontend/notebook/mock_data.js
index b1419e1256f..5c47cb5aa9b 100644
--- a/spec/frontend/notebook/mock_data.js
+++ b/spec/frontend/notebook/mock_data.js
@@ -1,2 +1,8 @@
export const relativeRawPath = '/test';
export const markdownCellContent = ['# Test'];
+export const errorOutputContent = [
+ '\u001b[0;31m---------------------------------------------------------------------------\u001b[0m',
+ '\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)',
+ '\u001b[0;32m/var/folders/cq/l637k4x13gx6y9p_gfs4c_gc0000gn/T/ipykernel_79203/294318627.py\u001b[0m in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mTo\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m',
+ "\u001b[0;31mNameError\u001b[0m: name 'To' is not defined",
+];