This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import requests | |
| token = os.getenv('SCW_TOKEN', "Insert your API Token here if you don't want to define environment variable") | |
| def test_metadata(): | |
| """ | |
| Get basic information about your instance | |
| """ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Testing for account API | |
| """ | |
| import os | |
| import requests | |
| token = os.getenv('SCW_TOKEN', "Insert your API Token here if you don't want to define environment variable") | |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from 'react'; | |
| import PropTypes from 'prop-types'; | |
| const style = { | |
| border: '1px solid black' | |
| }; | |
| export class AboutTestingTool extends React.Component { | |
| render() { | |
| console.log(this.props.supported_tests); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from 'react'; | |
| import PropTypes from 'prop-types'; | |
| import { DebugPanel } from './DebutPanel'; | |
| import { SessionConfig } from './SessionConfig'; | |
| import { AboutTestingTool } from './AboutTestingTool'; | |
| import { Agent } from './Agent'; | |
| import { Footer } from './Footer'; | |
| import { TestNavigation } from './session/TestNavigation'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from 'react'; | |
| import PropTypes from 'prop-types'; | |
| import { DebugPanel } from './DebutPanel'; | |
| import { SessionConfig } from './SessionConfig'; | |
| import { AboutTestingTool } from './AboutTestingTool'; | |
| import { Agent } from './Agent'; | |
| import { Footer } from './Footer'; | |
| import { TestNavigation } from './session/TestNavigation'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from 'react'; | |
| import PropTypes from 'prop-types'; | |
| import {DebugPanel} from './DebutPanel'; | |
| import {SessionConfig} from './SessionConfig'; | |
| import {AboutTestingTool} from './AboutTestingTool'; | |
| import {Agent} from './Agent'; | |
| import {Footer} from './Footer'; | |
| import {TestNavigation} from './session/TestNavigation'; |