···11+# OpenAPI Generator Ignore
22+# Generated by openapi-generator https://github.com/openapitools/openapi-generator
33+44+# Use this file to prevent files from being overwritten by the generator.
55+# The patterns follow closely to .gitignore or .dockerignore.
66+77+# As an example, the C# client generator defines ApiClient.cs.
88+# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
99+#ApiClient.cs
1010+1111+# You can match any string of characters against a directory, file or extension with a single asterisk (*):
1212+#foo/*/qux
1313+# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux
1414+1515+# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
1616+#foo/**/qux
1717+# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux
1818+1919+# You can also negate patterns with an exclamation (!).
2020+# For example, you can ignore all files in a docs folder with the file extension .md:
2121+#docs/*.md
2222+# Then explicitly reverse the ignore rule for a single file:
2323+#!docs/README.md
···11+{
22+ "name": "Using fixtures to represent data",
33+ "email": "hello@cypress.io",
44+ "body": "Fixtures are a great way to mock data for responses to routes"
55+}
···11+// ***********************************************************
22+// This example support/index.js is processed and
33+// loaded automatically before your test files.
44+//
55+// This is a great place to put global configuration and
66+// behavior that modifies Cypress.
77+//
88+// You can change the location of this file or turn off
99+// automatically serving support files with the
1010+// 'supportFile' configuration option.
1111+//
1212+// You can read more here:
1313+// https://on.cypress.io/configuration
1414+// ***********************************************************
1515+1616+// Import commands.js using ES2015 syntax:
1717+import './commands'
1818+1919+// Alternatively you can use CommonJS syntax:
2020+// require('./commands')