Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mock_data.js « notebook « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5c47cb5aa9b117743ef2197260d721e570cb5986 (plain)
1
2
3
4
5
6
7
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",
];