Skip to content

Commit

Permalink
renamed main file to countly
Browse files Browse the repository at this point in the history
  • Loading branch information
turtledreams committed Dec 5, 2023
1 parent 74993d3 commit 4d847e1
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion cypress/fixtures/click_test.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<html>
<head>
<script type='module'>
import Countly from '../../Main.js';
import Countly from '../../Countly.js';
import { queryExtractor } from '../support/integration_helper.js';

// here we implement a cookie and localStorage clearing logic
Expand Down
2 changes: 1 addition & 1 deletion cypress/fixtures/multi_instance.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<html>
<head>
<script type='module'>
import Countly from '../../Main.js';
import Countly from '../../Countly.js';
import { triggerStorageChange } from '../support/integration_helper.js';
// here we implement a cookie and localStorage clearing logic
const deleteAllCookies = () => {
Expand Down
2 changes: 1 addition & 1 deletion cypress/fixtures/referrer.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<html>
<head>
<script type='module'>
import Countly from '../../Main.js';
import Countly from '../../Countly.js';
Countly.init({
app_key: "YOUR_APP_KEY",
url: "https://your.domain.count.ly",
Expand Down
2 changes: 1 addition & 1 deletion cypress/fixtures/scroll_test.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<html>
<head>
<script type='module'>
import Countly from '../../Main.js';
import Countly from '../../Countly.js';
// here we implement a cookie and localStorage clearing logic
const deleteAllCookies = () => {
const cookies = document.cookie.split(";");
Expand Down
2 changes: 1 addition & 1 deletion cypress/fixtures/scroll_test_2.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<html>
<head>
<script type='module'>
import Countly from '../../Main.js';
import Countly from '../../Countly.js';
Countly.init({
app_key: "YOUR_APP_KEY",
url: "https://your.domain.count.ly",
Expand Down
2 changes: 1 addition & 1 deletion cypress/fixtures/scroll_test_3.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<html>
<head>
<script type='module'>
import Countly from '../../Main.js';
import Countly from '../../Countly.js';
window.Countly = Countly;
// here we implement a cookie and localStorage clearing logic
const deleteAllCookies = () => {
Expand Down
2 changes: 1 addition & 1 deletion cypress/fixtures/session_test_auto.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<!--Countly script-->
<script type='module'>
import Countly from '../../Main.js';
import Countly from '../../Countly.js';
window.Countly = Countly;
import { queryExtractor } from '../support/integration_helper.js';
// here we implement a cookie and localStorage clearing logic
Expand Down
2 changes: 1 addition & 1 deletion cypress/fixtures/session_test_manual_1.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<!--Countly script-->
<script type='module'>
import Countly from '../../Main.js';
import Countly from '../../Countly.js';
window.Countly = Countly;
import { queryExtractor } from '../support/integration_helper.js';
// here we implement a cookie and localStorage clearing logic
Expand Down
2 changes: 1 addition & 1 deletion cypress/fixtures/session_test_manual_2.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<!--Countly script-->
<script type='module'>
import Countly from '../../Main.js';
import Countly from '../../Countly.js';
window.Countly = Countly;
import { queryExtractor } from '../support/integration_helper.js';
// here we implement a cookie and localStorage clearing logic
Expand Down
2 changes: 1 addition & 1 deletion cypress/fixtures/user_agent.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<html>
<head>
<script type='module'>
import Countly from '../../Main.js';
import Countly from '../../Countly.js';
Countly.init({
app_key: "YOUR_APP_KEY",
url: "https://your.domain.count.ly",
Expand Down
2 changes: 1 addition & 1 deletion cypress/support/index.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
import "./commands";
import "../../Main.js";
import "../../Countly.js";

0 comments on commit 4d847e1

Please sign in to comment.