File tree Expand file tree Collapse file tree 4 files changed +54
-2
lines changed Expand file tree Collapse file tree 4 files changed +54
-2
lines changed Original file line number Diff line number Diff line change 2
2
node_modules
3
3
yarn.lock
4
4
package-lock.json
5
- index.js
6
- index.mjs
7
5
dist /
8
6
firebase-debug.log
9
7
firestore-debug.log
Original file line number Diff line number Diff line change
1
+ // ***********************************************************
2
+ // This example plugins/index.js can be used to load plugins
3
+ //
4
+ // You can change the location of this file or turn off loading
5
+ // the plugins file with the 'pluginsFile' configuration option.
6
+ //
7
+ // You can read more here:
8
+ // https://on.cypress.io/plugins-guide
9
+ // ***********************************************************
10
+
11
+ // This function is called when a project is opened or re-opened (e.g. due to
12
+ // the project's config changing)
13
+
14
+ module . exports = ( on , config ) => {
15
+ // `on` is used to hook into various events Cypress emits
16
+ // `config` is the resolved Cypress config
17
+ }
Original file line number Diff line number Diff line change
1
+ // ***********************************************************
2
+ // This example support/index.js is processed and
3
+ // loaded automatically before your test files.
4
+ //
5
+ // This is a great place to put global configuration and
6
+ // behavior that modifies Cypress.
7
+ //
8
+ // You can change the location of this file or turn off
9
+ // automatically serving support files with the
10
+ // 'supportFile' configuration option.
11
+ //
12
+ // You can read more here:
13
+ // https://on.cypress.io/configuration
14
+ // ***********************************************************
15
+
16
+ // Import commands.js using ES2015 syntax:
17
+ import './commands'
18
+
19
+ // Alternatively you can use CommonJS syntax:
20
+ // require('./commands')
Original file line number Diff line number Diff line change
1
+ import FirebaseApp from './FirebaseApp.svelte' ;
2
+ import User from './User.svelte' ;
3
+ import Doc from './Doc.svelte' ;
4
+ import Collection from './Collection.svelte' ;
5
+ import { userStore } from './auth' ;
6
+ import { docStore , collectionStore } from './firestore' ;
7
+
8
+
9
+ export {
10
+ FirebaseApp ,
11
+ User ,
12
+ Doc ,
13
+ Collection ,
14
+ userStore ,
15
+ docStore ,
16
+ collectionStore ,
17
+ }
You can’t perform that action at this time.
0 commit comments